Created
August 8, 2016 06:08
-
-
Save djyde/f2ed451a50dbe36d540ba17c0f92d8b4 to your computer and use it in GitHub Desktop.
vscode keybinding
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
// 将键绑定放入此文件中以覆盖默认值 | |
[ | |
{ | |
"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