@@ -510,13 +510,13 @@ const editorConfiguration: IConfigurationNode = {
510510 'editor.suggestOnTriggerCharacters' : {
511511 'type' : 'boolean' ,
512512 'default' : EDITOR_DEFAULTS . contribInfo . suggestOnTriggerCharacters ,
513- 'description' : nls . localize ( 'suggestOnTriggerCharacters' , "Controls if suggestions should automatically show up when typing trigger characters" )
513+ 'description' : nls . localize ( 'suggestOnTriggerCharacters' , "Controls if suggestions should automatically show up when typing trigger characters. " )
514514 } ,
515515 'editor.acceptSuggestionOnEnter' : {
516516 'type' : 'string' ,
517517 'enum' : [ 'on' , 'smart' , 'off' ] ,
518518 'default' : EDITOR_DEFAULTS . contribInfo . acceptSuggestionOnEnter ,
519- 'description' : nls . localize ( 'acceptSuggestionOnEnter' , "Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change" )
519+ 'description' : nls . localize ( 'acceptSuggestionOnEnter' , "Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change. " )
520520 } ,
521521 'editor.acceptSuggestionOnCommitCharacter' : {
522522 'type' : 'boolean' ,
@@ -560,13 +560,13 @@ const editorConfiguration: IConfigurationNode = {
560560 'type' : 'integer' ,
561561 'default' : 0 ,
562562 'minimum' : 0 ,
563- 'description' : nls . localize ( 'suggestFontSize' , "Font size for the suggest widget" )
563+ 'description' : nls . localize ( 'suggestFontSize' , "Font size for the suggest widget. " )
564564 } ,
565565 'editor.suggestLineHeight' : {
566566 'type' : 'integer' ,
567567 'default' : 0 ,
568568 'minimum' : 0 ,
569- 'description' : nls . localize ( 'suggestLineHeight' , "Line height for the suggest widget" )
569+ 'description' : nls . localize ( 'suggestLineHeight' , "Line height for the suggest widget. " )
570570 } ,
571571 'editor.suggest.filterGraceful' : {
572572 type : 'boolean' ,
@@ -586,12 +586,12 @@ const editorConfiguration: IConfigurationNode = {
586586 'editor.occurrencesHighlight' : {
587587 'type' : 'boolean' ,
588588 'default' : EDITOR_DEFAULTS . contribInfo . occurrencesHighlight ,
589- 'description' : nls . localize ( 'occurrencesHighlight' , "Controls whether the editor should highlight semantic symbol occurrences" )
589+ 'description' : nls . localize ( 'occurrencesHighlight' , "Controls whether the editor should highlight semantic symbol occurrences. " )
590590 } ,
591591 'editor.overviewRulerLanes' : {
592592 'type' : 'integer' ,
593593 'default' : 3 ,
594- 'description' : nls . localize ( 'overviewRulerLanes' , "Controls the number of decorations that can show up at the same position in the overview ruler" )
594+ 'description' : nls . localize ( 'overviewRulerLanes' , "Controls the number of decorations that can show up at the same position in the overview ruler. " )
595595 } ,
596596 'editor.overviewRulerBorder' : {
597597 'type' : 'boolean' ,
@@ -607,7 +607,7 @@ const editorConfiguration: IConfigurationNode = {
607607 'editor.mouseWheelZoom' : {
608608 'type' : 'boolean' ,
609609 'default' : EDITOR_DEFAULTS . viewInfo . mouseWheelZoom ,
610- 'description' : nls . localize ( 'mouseWheelZoom' , "Zoom the font of the editor when using mouse wheel and holding Ctrl" )
610+ 'description' : nls . localize ( 'mouseWheelZoom' , "Zoom the font of the editor when using mouse wheel and holding Ctrl. " )
611611 } ,
612612 'editor.cursorStyle' : {
613613 'type' : 'string' ,
@@ -644,12 +644,12 @@ const editorConfiguration: IConfigurationNode = {
644644 'editor.renderControlCharacters' : {
645645 'type' : 'boolean' ,
646646 default : EDITOR_DEFAULTS . viewInfo . renderControlCharacters ,
647- description : nls . localize ( 'renderControlCharacters' , "Controls whether the editor should render control characters" )
647+ description : nls . localize ( 'renderControlCharacters' , "Controls whether the editor should render control characters. " )
648648 } ,
649649 'editor.renderIndentGuides' : {
650650 'type' : 'boolean' ,
651651 default : EDITOR_DEFAULTS . viewInfo . renderIndentGuides ,
652- description : nls . localize ( 'renderIndentGuides' , "Controls whether the editor should render indent guides" )
652+ description : nls . localize ( 'renderIndentGuides' , "Controls whether the editor should render indent guides. " )
653653 } ,
654654 'editor.highlightActiveIndentGuide' : {
655655 'type' : 'boolean' ,
0 commit comments