Files
VSCodeConfigAndExtensions/keybindings.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2025-09-14 21:18:38 +02:00
// 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"
},
]