54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
// Place your key bindings in this file to override the defaultsauto[]
|
|
[
|
|
{
|
|
"key": "ctrl+w",
|
|
"command": "editor.action.addSelectionToNextFindMatch",
|
|
"when": "editorFocus"
|
|
},
|
|
{
|
|
"key": "ctrl+d",
|
|
"command": "-editor.action.addSelectionToNextFindMatch",
|
|
"when": "editorFocus"
|
|
},
|
|
{
|
|
"key": "ctrl+d",
|
|
"command": "editor.action.duplicateSelection"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+p",
|
|
"command": "-workbench.action.showCommands"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+p",
|
|
"command": "extension.searchInOpenTabs"
|
|
},
|
|
{
|
|
"key": "ctrl+l",
|
|
"command": "-expandLineSelection",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "ctrl+l",
|
|
"command": "extension.listFilesInSameDirectory"
|
|
},
|
|
{
|
|
"key": "alt+shift+up",
|
|
"command": "cursorMove",
|
|
"args": {
|
|
"to": "up",
|
|
"by": "line",
|
|
"value": 10
|
|
},
|
|
// "when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "alt+shift+down",
|
|
"command": "cursorMove",
|
|
"args": {
|
|
"to": "down",
|
|
"by": "line",
|
|
"value": 10
|
|
},
|
|
// "when": "editorTextFocus"
|
|
},
|
|
] |