Skip to content

Instantly share code, notes, and snippets.

@lonelydev
Created August 16, 2019 13:39
Show Gist options
  • Save lonelydev/1b52970cf182f71f807ae75141e1fb01 to your computer and use it in GitHub Desktop.
Save lonelydev/1b52970cf182f71f807ae75141e1fb01 to your computer and use it in GitHub Desktop.
vscode keybindings.json
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+oem_2",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+oem_8",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+oem_3",
"command": "-workbench.action.terminal.new"
},
{
"key": "ctrl+alt+oem_8",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+oem_3",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+k",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+oem_2",
"command": "-editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+oem_2",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+oem_8 ctrl+r",
"command": "workbench.action.terminal.rename"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment