Skip to content

Instantly share code, notes, and snippets.

@codeandcoffeechats
Forked from JoakoV3/keybingings.json
Created August 28, 2022 19:27
Show Gist options
  • Save codeandcoffeechats/d783e8fd8ffba73a79cdc660e82395ab to your computer and use it in GitHub Desktop.
Save codeandcoffeechats/d783e8fd8ffba73a79cdc660e82395ab to your computer and use it in GitHub Desktop.
[
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "tab",
"command": "selectNextSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"key": "shift+tab",
"command": "selectPrevSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"key": "ctrl+alt+v",
"command": "toggleVim"
},
{
"key": "shift+alt+j",
"command": "editor.action.moveLinesDownAction"
},
{
"key": "shift+alt+k",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+k",
"command": "editor.action.showHover",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment