You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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.
64
+
acceptSuggestionOnCommitCharacter: true,
65
+
66
+
// 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
67
+
acceptSuggestionOnEnter: "on",
68
+
69
+
// Controls the delay in ms after which quick suggestions will show up.
70
+
quickSuggestionsDelay: 10,
71
+
72
+
// Controls if suggestions should automatically show up when typing trigger characters
73
+
suggestOnTriggerCharacters: true,
74
+
75
+
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
76
+
tabCompletion: "off",
77
+
78
+
// Controls whether sorting favours words that appear close to the cursor
79
+
suggest: {
80
+
localityBonus: true,
81
+
preview: true,
82
+
},
83
+
84
+
// Controls how suggestions are pre-selected when showing the suggest list
0 commit comments