Skip to content

Instantly share code, notes, and snippets.

@coder114514
Last active July 6, 2023 13:10
Show Gist options
  • Save coder114514/17ae32f754658e2e5a25584cb5877eeb to your computer and use it in GitHub Desktop.
Save coder114514/17ae32f754658e2e5a25584cb5877eeb to your computer and use it in GitHub Desktop.
vscode profile keybindings
// %APPDATA%\Code\User\keybindings.json
[
{
"key": "ctrl+v",
"command": "-workbench.action.terminal.sendSequence",
"when": "terminalFocus && !accessibilityModeEnabled && terminalShellType == 'pwsh'"
},
{
"key": "tab",
"command": "-acceptSelectedSuggestion",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus"
},
{
"key": "tab",
"command": "tabout",
"when": "editorTextFocus && !editorHasMultipleSelections && !inSnippetMode && !inlineSuggestionVisible"
},
{
"key": "tab",
"command": "-tabout",
"when": "editorTextFocus && !editorHasMultipleSelections && !inSnippetMode && !inlineSuggestionVisible && !suggestWidgetVisible"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment