Skip to content

Instantly share code, notes, and snippets.

@harishthatikonda
Created December 17, 2018 08:45
Show Gist options
  • Save harishthatikonda/ab8b449b472a0065f089fce9da5dae15 to your computer and use it in GitHub Desktop.
Save harishthatikonda/ab8b449b472a0065f089fce9da5dae15 to your computer and use it in GitHub Desktop.
My VsCode keybindings.json
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+q",
"command": "workbench.action.navigateToLastEditLocation",
},
{
"key": "ctrl+alt+p",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+left",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
},
{
"key": "ctrl+alt+n",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.navigateBack"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment