Replies: 2 comments
-
As far as I know, just assign null to cancel, try? {
"context": "Editor && inline_completion && !showing_completions",
"use_key_equivalents": true,
"bindings": {
"tab": null
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Alright thanks, the solution is quite trivial: {
"context": "Editor && inline_completion && !showing_completions",
"use_key_equivalents": true,
"bindings": {
"tab": "editor::Tab"
}
}, mapping to null prevents |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently
tab
is used for"editor::AcceptInlineCompletion"
. Is there a way to unmap this, so although a suggestion appears, I can still use tab to indent the code.Seems like the following doesn't overwrite the keybinding, but extends it:
Beta Was this translation helpful? Give feedback.
All reactions