Created
September 18, 2018 16:12
-
-
Save micheleb/bfa6bf877e8e584b4b1eefe87d79c6a0 to your computer and use it in GitHub Desktop.
VSCode 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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.navigateLeft" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.navigateRight" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "-extension.vim_navigateCtrlL", | |
"when": "editorTextFocus && vim.active && vim.use<C-l> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "-editor.action.startFindReplaceAction" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "-extension.vim_ctrl+h", | |
"when": "editorTextFocus && vim.active && vim.use<C-h> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+a shift+\\", | |
"command": "workbench.action.splitEditor" | |
}, | |
{ | |
"key": "ctrl+\\", | |
"command": "-workbench.action.splitEditor" | |
}, | |
{ | |
"key": "ctrl+a -", | |
"command": "workbench.action.splitEditorOrthogonal" | |
}, | |
{ | |
"key": "ctrl+k ctrl+\\", | |
"command": "-workbench.action.splitEditorOrthogonal" | |
}, | |
{ | |
"key": "ctrl+a h", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ | |
"key": "ctrl+a l", | |
"command": "workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+pagedown", | |
"command": "-workbench.action.nextEditor" | |
}, | |
{ | |
"key": "alt+enter", | |
"command": "editor.action.quickFix", | |
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+[Period]", | |
"command": "-editor.action.quickFix", | |
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+enter", | |
"command": "-debug.openBreakpointToSide", | |
"when": "breakpointsFocused" | |
}, | |
{ | |
"key": "alt+enter", | |
"command": "-editor.action.selectAllMatches", | |
"when": "editorFocus && findWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "-workbench.action.openRecent" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "-extension.vim_ctrl+r", | |
"when": "editorTextFocus && vim.active && vim.use<C-r> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "-workbench.action.quickOpenNavigateNextInRecentFilesPicker", | |
"when": "inQuickOpen && inRecentFilesPicker" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment