Last active
July 6, 2023 13:10
-
-
Save coder114514/17ae32f754658e2e5a25584cb5877eeb to your computer and use it in GitHub Desktop.
vscode profile keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// %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