We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
escape
Making escape work nicer with Copilot next edit suggestions (NES) (and other VS Code UI widgets for that matter):
{ "key": "escape", "command": "-extension.vim_escape", "when": "editorTextFocus && vim.active && !inDebugRepl" }, { "key": "escape", "command": "extension.vim_escape", "when": "editorTextFocus && vim.active && !inDebugRepl && !testing.isPeekVisible && !testing.isInPeek && (vim.mode == 'Insert' || !notebookEditorFocused) && !inlineEditIsVisible && !suggestWidgetVisible && !findWidgetVisible && !dirtyDiffVisible" }, { "key": "escape", "command": "runCommands", "when": "vim.mode == 'Insert' && inlineEditIsVisible", "args": { "commands": [ "editor.action.inlineSuggest.hide", "extension.vim_escape" ] } }, { "key": "escape", "command": "runCommands", "when": "vim.mode == 'Insert' && suggestWidgetVisible", "args": { "commands": [ "hideSuggestWidget", "extension.vim_escape" ] } }, { "key": "escape", "command": "-hideSuggestWidget", "when": "suggestWidgetVisible && textInputFocus" }, { "key": "escape", "command": "hideSuggestWidget", "when": "suggestWidgetVisible && textInputFocus && !vim.active" },
Originally posted by @ulugbekna in VSCodeVim/Vim#9459 (comment)
The text was updated successfully, but these errors were encountered:
Making escape work nicer with Copilot next edit suggestions (NES) (and other VS Code UI widgets for that matter): @thaileen0411 { "key": "escape", "command": "-extension.vim_escape", "when": "editorTextFocus && vim.active && !inDebugRepl" }, { "key": "escape", "command": "extension.vim_escape", "when": "editorTextFocus && vim.active && !inDebugRepl && !testing.isPeekVisible && !testing.isInPeek && (vim.mode == 'Insert' || !notebookEditorFocused) && !inlineEditIsVisible && !suggestWidgetVisible && !findWidgetVisible && !dirtyDiffVisible" }, { "key": "escape", "command": "runCommands", "when": "vim.mode == 'Insert' && inlineEditIsVisible", "args": { "commands": [ "editor.action.inlineSuggest.hide", "extension.vim_escape" ] } }, { "key": "escape", "command": "runCommands", "when": "vim.mode == 'Insert' && suggestWidgetVisible", "args": { "commands": [ "hideSuggestWidget", "extension.vim_escape" ] } }, { "key": "escape", "command": "-hideSuggestWidget", "when": "suggestWidgetVisible && textInputFocus" }, { "key": "escape", "command": "hideSuggestWidget", "when": "suggestWidgetVisible && textInputFocus && !vim.active" }, Originally posted by @ulugbekna in VSCodeVim/Vim#9459 (comment)
Making escape work nicer with Copilot next edit suggestions (NES) (and other VS Code UI widgets for that matter): @thaileen0411
- [ ]
Sorry, something went wrong.
ulugbekna
No branches or pull requests
Making
escape
work nicer with Copilot next edit suggestions (NES) (and other VS Code UI widgets for that matter):Originally posted by @ulugbekna in VSCodeVim/Vim#9459 (comment)
The text was updated successfully, but these errors were encountered: