Created
April 4, 2024 12:46
-
-
Save PJUllrich/93cfa7d2f05ab4afb19d1d798c63da6d to your computer and use it in GitHub Desktop.
zeddev configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"context": "Pane", | |
"bindings": { | |
"ctrl-shift-tab": "pane::ActivatePrevItem", | |
"ctrl-tab": "pane::ActivateNextItem", | |
"cmd-shift-t": "workspace::NewTerminal" | |
} | |
}, | |
{ | |
"context": "Workspace", | |
"bindings": { | |
"cmd-t": "workspace::ToggleBottomDock" | |
} | |
}, | |
{ | |
"context": "Editor", | |
"bindings": { | |
"cmd-l": ["task::Spawn", { "task_name": "test one" }], | |
"cmd-shift-l": ["task::Spawn", { "task_name": "test file" }], | |
"alt-up": "editor::MoveLineUp", | |
"alt-down": "editor::MoveLineDown", | |
"shift-alt-up": "editor::AddSelectionAbove", | |
"shift-alt-down": "editor::AddSelectionBelow", | |
"cmd-shift-d": "editor::DuplicateLine", | |
"cmd-backspace": "editor::DeleteLine", | |
"alt-backspace": "editor::DeleteToPreviousSubwordStart" | |
} | |
}, | |
{ | |
"context": "ProjectPanel && not_editing", | |
"bindings": { | |
"m": "project_panel::CollapseAllEntries" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment