Cybrkyd's Git Repositories

vscode-config - commit: 593e94e

commit 593e94ed58eacffe610cc84cbc55461d3682eb8b8d344ae9722d9505434ccb4b
author cybrkyd <noreply@cybrkyd.com> 2026-02-08 20:20:03 +0000
committer cybrkyd <noreply@cybrkyd.com> 2026-02-08 20:20:03 +0000

Commit Message

compression formatting for keybindings.json

📊 Diffstat

keybindings.json 51
1 files changed, 9 insertions(+), 42 deletions(-)

Diff

diff --git a/keybindings.json b/keybindings.json
index 24c6479..806f842 100644
--- a/keybindings.json
+++ b/keybindings.json
@@ -1,47 +1,14 @@
// Place your key bindings in this file to override the defaults
[
- {
- "key": "ctrl+d",
- "command": "-editor.action.addSelectionToNextFindMatch",
- "when": "editorFocus"
- },
- {
- "key": "ctrl+d",
- "command": "-notebook.addFindMatchToSelection",
- "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'"
- },
- {
- "key": "ctrl+d",
- "command": "editor.action.deleteLines",
- "when": "textInputFocus && !editorReadonly"
- },
- {
- "key": "ctrl+shift+k",
- "command": "-editor.action.deleteLines",
- "when": "textInputFocus && !editorReadonly"
- },
- {
- "key": "alt+s",
- "command": "editor.action.addSelectionToNextFindMatch",
- "when": "editorFocus"
- },
- {
- "key": "alt+s",
- "command": "notebook.addFindMatchToSelection",
- "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'"
- },
- {
- "key": "ctrl+numpad1",
- "command": "editor.action.sortLinesAscending"
- },
- {
- "key": "ctrl+j",
- "command": "-workbench.action.togglePanel"
- },
- {
- "key": "ctrl+j",
- "command": "editor.action.joinLines"
- },
+ { "key": "ctrl+d", "command": "-editor.action.addSelectionToNextFindMatch", "when": "editorFocus" },
+ { "key": "ctrl+d", "command": "-notebook.addFindMatchToSelection", "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'" },
+ { "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "textInputFocus && !editorReadonly" },
+ { "key": "ctrl+shift+k", "command": "-editor.action.deleteLines", "when": "textInputFocus && !editorReadonly" },
+ { "key": "alt+s", "command": "editor.action.addSelectionToNextFindMatch", "when": "editorFocus" },
+ { "key": "alt+s", "command": "notebook.addFindMatchToSelection", "when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'" },
+ { "key": "ctrl+numpad1", "command": "editor.action.sortLinesAscending" },
+ { "key": "ctrl+j", "command": "-workbench.action.togglePanel" },
+ { "key": "ctrl+j", "command": "editor.action.joinLines" },
{ "key": "ctrl+alt+2", "command": "workbench.action.tasks.runTask", "args": "Rename Markdown" }
]