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
__Issue:__ It's not straightforward to disable the `<tab>` key behavior of completion
__Fix:__ Add an `editor.acceptSuggestionOnTab` setting, which is similar to the `editor.acceptSuggestionOnEnter` setting.
Copy file name to clipboardExpand all lines: docs/docs/configuration/settings.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,9 @@ The configuration file, `configuration.json` is in the Oni2 directory, whose loc
23
23
24
24
### Editor
25
25
26
-
-`editor.acceptSuggestionOnEnter`__(_bool_ default: `false`)__ - When `true`, the enter key can be used to select a suggestion. By default, the enter key will not be used, so as not to interfere with creating a new line.
26
+
-`editor.acceptSuggestionOnEnter`__(_bool_ default: `true`)__ - When `true`, the enter key can be used to accept a suggestion. Users may wish to set to `false` to avoid a conflict with inserting a new line.
27
+
28
+
-`editor.acceptSuggestionOnTab`__(_bool_ default: `true`)__ - When `true`, the tab key can be used to accept a suggestion. Users may wish to turn to `false` to avoid ambiguity with inserting a tab character.
27
29
28
30
-`editor.autoClosingBrackets`__(_"LanguageDefined"|"Never"_ default: `"LanguageDefined"`)__ - When set to `"LanguageDefined"`, Onivim will automatically close brackets and pairs, based on language configuration.
0 commit comments