Skip to content

Instantly share code, notes, and snippets.

@djyde
Created August 8, 2016 06:08
Show Gist options
  • Save djyde/f2ed451a50dbe36d540ba17c0f92d8b4 to your computer and use it in GitHub Desktop.
Save djyde/f2ed451a50dbe36d540ba17c0f92d8b4 to your computer and use it in GitHub Desktop.
vscode keybinding
// 将键绑定放入此文件中以覆盖默认值
[
{
"key": "cmd+t",
"command": "workbench.action.quickOpen"
},
{
"key": "shift+cmd+t",
"command": "workbench.action.openPreviousEditor"
},
{
"key": "cmd+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "cmd+escape",
"command": "workbench.action.terminal.toggleTerminal"
}
,{
"key": "cmd+l",
"command": "cursorDownSelect",
"when": "editorTextFocus"
},{
"key": "ctrl+d",
"command": "workbench.action.debug.start",
"when": "!inDebugMode"
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment