Skip to content

Commit ebe7a4e

Browse files
authored
mention editor.suggestOnTriggerCharacters from the quick suggest doc, (microsoft#155467)
microsoft#155410
1 parent 58402a0 commit ebe7a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2966,7 +2966,7 @@ class EditorQuickSuggestions extends BaseEditorOption<EditorOption.quickSuggesti
29662966
},
29672967
},
29682968
default: defaults,
2969-
markdownDescription: nls.localize('quickSuggestions', "Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget.")
2969+
markdownDescription: nls.localize('quickSuggestions', "Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the '{0}'-setting which controls if suggestions are triggered by special characters.", `#editor.suggestOnTriggerCharacters#`)
29702970
});
29712971
this.defaultValue = defaults;
29722972
}
@@ -4557,7 +4557,7 @@ export const enum EditorOption {
45574557
export const EditorOptions = {
45584558
acceptSuggestionOnCommitCharacter: register(new EditorBooleanOption(
45594559
EditorOption.acceptSuggestionOnCommitCharacter, 'acceptSuggestionOnCommitCharacter', true,
4560-
{ markdownDescription: nls.localize('acceptSuggestionOnCommitCharacter', "Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.") }
4560+
{ markdownDescription: nls.localize('acceptSuggestionOnCommitCharacter', "Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`; `) can be a commit character that accepts a suggestion and types that character.") }
45614561
)),
45624562
acceptSuggestionOnEnter: register(new EditorStringEnumOption(
45634563
EditorOption.acceptSuggestionOnEnter, 'acceptSuggestionOnEnter',

0 commit comments

Comments
 (0)