23 lines
483 B
JSON
23 lines
483 B
JSON
// Place your key bindings in this file to override the defaults
|
|
[
|
|
{
|
|
"key": "ctrl+d",
|
|
"command": "editor.action.duplicateSelection",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+/",
|
|
"command": "editor.action.blockComment",
|
|
"when": "editor.hasSelection"
|
|
},
|
|
{
|
|
"key": "alt+/",
|
|
"command": "workbench.action.togglePanel",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "alt+shift+\\",
|
|
"command": "workbench.action.terminal.new"
|
|
}
|
|
]
|