Last active
August 26, 2020 10:49
-
-
Save adinata-id/448d8733190d61a75555bb3c0c879b6e to your computer and use it in GitHub Desktop.
keybindings.json DI VSCODE
This file contains 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 override the defaults | |
[ | |
/** | |
* Activity Bar | |
**/ | |
{ | |
"key": "ctrl+k ctrl+e", | |
"command": "workbench.view.explorer" | |
}, | |
{ | |
"key": "ctrl+k ctrl+v", | |
"command": "workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+k ctrl+d", | |
"command": "workbench.view.debug" | |
}, | |
{ | |
"key": "ctrl+k ctrl+x", | |
"command": "workbench.extensions.action.showInstalledExtensions" | |
}, | |
/** | |
* Open Terminal | |
*/ | |
{ | |
"key": "ctrl+t", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment