Add VSCode configuration.
This commit is contained in:
54
keybindings.json
Normal file
54
keybindings.json
Normal file
@@ -0,0 +1,54 @@
|
||||
// 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"
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user