Add VSCode configuration.

This commit is contained in:
2025-09-14 21:18:38 +02:00
commit 0f7b8dc9ed
3 changed files with 155 additions and 0 deletions

54
keybindings.json Normal file
View 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"
},
]