-
-
Save xheisenbugx/0b480ed6555056418905b6e59af33674 to your computer and use it in GitHub Desktop.
| [ | |
| { | |
| "context": "Editor && (edit_prediction && showing_completions)", | |
| "bindings": { | |
| "tab": "editor::AcceptEditPrediction" | |
| } | |
| }, | |
| // Terminal | |
| { | |
| "context": "Workspace", | |
| "bindings": { | |
| "ctrl-/": "terminal_panel::Toggle" | |
| } | |
| }, | |
| { | |
| "context": "VimControl && !menu", | |
| "bindings": { | |
| "L": "pane::ActivateNextItem", | |
| "H": "pane::ActivatePreviousItem" | |
| } | |
| }, | |
| // Window's navigation | |
| { | |
| "context": "Dock || Terminal || Editor", | |
| "bindings": { | |
| // Window's motions | |
| "ctrl-h": "workspace::ActivatePaneLeft", | |
| "ctrl-l": "workspace::ActivatePaneRight", | |
| "ctrl-k": "workspace::ActivatePaneUp", | |
| "ctrl-j": "workspace::ActivatePaneDown" | |
| } | |
| }, | |
| { | |
| "context": "GitPanel", | |
| "bindings": { | |
| "q": "git_panel::Close", | |
| "escape": "git_panel::Close" | |
| } | |
| }, | |
| { | |
| "context": "AgentPanel", | |
| "bindings": { | |
| "ctrl-\\": "workspace::ToggleRightDock", | |
| "cmd-k": "workspace::ToggleRightDock" | |
| } | |
| }, | |
| // File panel (netrw) | |
| { | |
| "context": "ProjectPanel && not_editing", | |
| "bindings": { | |
| "a": "project_panel::NewFile", | |
| "A": "project_panel::NewDirectory", | |
| "r": "project_panel::Rename", | |
| "d": "project_panel::Delete", | |
| "x": "project_panel::Cut", | |
| "c": "project_panel::Copy", | |
| "p": "project_panel::Paste", | |
| // Close project panel as project file panel on the right | |
| "q": "workspace::ToggleLeftDock", | |
| "space e": "workspace::ToggleLeftDock", | |
| ":": "command_palette::Toggle", | |
| "%": "project_panel::NewFile", | |
| "/": "project_panel::NewSearchInDirectory", | |
| "enter": "project_panel::OpenPermanent", | |
| "escape": "workspace::ToggleLeftDock", | |
| "h": "project_panel::CollapseSelectedEntry", | |
| "j": "menu::SelectNext", | |
| "k": "menu::SelectPrevious", | |
| "l": "project_panel::ExpandSelectedEntry", | |
| "o": "project_panel::OpenPermanent", | |
| "shift-d": "project_panel::Delete", | |
| "shift-r": "project_panel::Rename", | |
| "t": "project_panel::OpenPermanent", | |
| "v": "project_panel::OpenPermanent", | |
| "shift-g": "menu::SelectLast", | |
| "g g": "menu::SelectFirst", | |
| "-": "project_panel::SelectParent", | |
| "ctrl-6": "pane::AlternateFile" | |
| } | |
| }, | |
| // Empty pane, set of keybindings that are available when there is no active editor | |
| { | |
| "context": "EmptyPane || SharedScreen", | |
| "bindings": { | |
| // Open file finder | |
| "space space": "file_finder::Toggle", | |
| // New file | |
| "space f n": "workspace::NewFile", | |
| // Open recent project | |
| "space f p": "projects::OpenRecent", | |
| // Search in all the files | |
| "space s g": [ | |
| "editor::SelectAllMatches", | |
| "editor::OpenSelectionsInMultibuffer" | |
| ], | |
| // Quit zed | |
| "space q q": "zed::Quit" | |
| } | |
| }, | |
| { | |
| "context": "Editor && VimControl && !VimWaiting && !menu", | |
| "bindings": { | |
| // Refactoring | |
| "space c r ": "editor::Rename", | |
| // Chat with AI | |
| "space a a": "agent::ToggleFocus", | |
| "ctrl-\\": "workspace::ToggleRightDock", | |
| "cmd-k": "agent::Toggle", | |
| "space a e": "assistant::InlineAssist", | |
| "cmd-l": "assistant::InlineAssist", | |
| "space a t": "workspace::ToggleRightDock", | |
| // Git | |
| "space g g": "git_panel::Toggle", | |
| "space g h d": "editor::ExpandAllDiffHunks", | |
| "space g h D": "git::Diff", | |
| "space g h r": "git::Restore", | |
| "space g h R": "git::RestoreFile", | |
| // Toggle inlay hints | |
| "space u i": "editor::ToggleInlayHints", | |
| // Toggle soft wrap | |
| "space u w": "editor::ToggleSoftWrap", | |
| // Open markdown preview | |
| "space m p": "markdown::OpenPreview", | |
| "space m P": "markdown::OpenPreviewToTheSide", | |
| // Open recent project | |
| "space f p": "projects::OpenRecent", | |
| // Search word under cursor in current pane | |
| "space s w": "buffer_search::Deploy", | |
| // Search word under cursor in all panes | |
| "space s W": "pane::DeploySearch", | |
| // Tab things. Almost as good as harpoon. | |
| "space 1": ["pane::ActivateItem", 0], | |
| "space 2": ["pane::ActivateItem", 1], | |
| "space 3": ["pane::ActivateItem", 2], | |
| "space 4": ["pane::ActivateItem", 3], | |
| "space 5": ["pane::ActivateItem", 4], | |
| "space 6": ["pane::ActivateItem", 5], | |
| "space 7": ["pane::ActivateItem", 6], | |
| "space 8": ["pane::ActivateItem", 7], | |
| "space 9": ["pane::ActivateItem", 8], | |
| "space 0": "pane::ActivateLastItem", | |
| "] b": "pane::ActivateNextItem", | |
| "[ b": "pane::ActivatePreviousItem", | |
| "space ,": "tab_switcher::Toggle", | |
| // Jump to the previous location | |
| "space b b": "pane::AlternateFile", | |
| // Close buffer | |
| "space b d": "pane::CloseActiveItem", | |
| // Close inactive buffers | |
| "space b q": "pane::CloseOtherItems", | |
| // Pin buffer | |
| "space b p": "pane::TogglePinTab", | |
| // New file | |
| "space b n": "workspace::NewFile", | |
| // Search in the current buffer | |
| "space s b": "vim::Search", | |
| "space f n": "workspace::NewFile", | |
| // Search | |
| "space /": "workspace::NewSearch", | |
| // Git | |
| "space g b": "git::Blame", | |
| // LSP & Code actions | |
| "space c a": "editor::ToggleCodeActions", | |
| "space s d": "diagnostics::Deploy", | |
| "space s s": "outline::Toggle", | |
| // Format | |
| "space c f": "editor::Format", | |
| // File explorer | |
| "space e": "project_panel::ToggleFocus", | |
| // Telescope | |
| "space f f": "file_finder::Toggle", | |
| "space space": "file_finder::Toggle", | |
| // Quit zed | |
| "space q q": "zed::Quit", | |
| // Terminal | |
| "space t": "terminal_panel::Toggle", | |
| // Debugger | |
| "space d a": "debugger::Start", | |
| "space d t": "debugger::Stop", | |
| "space d b": "editor::ToggleBreakpoint", | |
| "space d u": "debug_panel::ToggleFocus", | |
| // Windows management | |
| "space w s": "pane::SplitDown", | |
| "space w v": "pane::SplitRight", | |
| "space -": "pane::SplitDown", | |
| "space |": "pane::SplitRight", | |
| "space w c": "pane::CloseAllItems", | |
| "space w d": "pane::CloseAllItems", | |
| // Jump to hunks | |
| "] h": "editor::GoToHunk", | |
| "[ h": "editor::GoToPreviousHunk", | |
| "] c": "editor::GoToHunk", | |
| "[ c": "editor::GoToPreviousHunk", | |
| // Jump to diagnostic | |
| "] d": "editor::GoToDiagnostic", | |
| "[ d": "editor::GoToPreviousDiagnostic", | |
| "] e": "editor::GoToDiagnostic", | |
| "[ e": "editor::GoToPreviousDiagnostic", | |
| // Excerpts | |
| "] q": "editor::MoveToStartOfNextExcerpt", | |
| "[ q": "editor::MoveToStartOfExcerpt" | |
| } | |
| }, | |
| { | |
| "context": "Editor && vim_mode == visual && !VimWaiting && !VimObject", | |
| "bindings": { | |
| // Line's Motions | |
| "shift-j": "editor::MoveLineDown", | |
| "shift-k": "editor::MoveLineUp" | |
| } | |
| }, | |
| // Center the cursor on the screen when scrolling and find all references | |
| { | |
| "context": "VimControl && !menu", | |
| "bindings": { | |
| "ctrl-d": ["workspace::SendKeystrokes", "ctrl-d z z"], | |
| "ctrl-u": ["workspace::SendKeystrokes", "ctrl-u z z"], | |
| "n": ["workspace::SendKeystrokes", "n z z z v"], | |
| "shift-n": ["workspace::SendKeystrokes", "shift-n z z z v"], | |
| "shift-g": ["workspace::SendKeystrokes", "shift-g z z"], | |
| "g r": "editor::FindAllReferences" | |
| } | |
| }, | |
| { | |
| "context": "vim_operator == d", | |
| "bindings": { | |
| "o": "editor::ExpandAllDiffHunks", | |
| "r": "git::Restore" | |
| } | |
| }, | |
| { | |
| "context": "vim_operator == g", | |
| "bindings": { | |
| "w": "vim::HelixJumpToWord" | |
| } | |
| }, | |
| { | |
| "context": "vim_mode == normal || vim_mode == visual", | |
| "bindings": { | |
| "s": "vim::HelixJumpToWord", | |
| "S": "vim::PushSneakBackward" | |
| } | |
| }, | |
| { | |
| "context": "vim_operator == a || vim_operator == i || vim_operator == cs", | |
| "bindings": { | |
| "b": "vim::MiniBrackets", | |
| "q": "vim::MiniQuotes", | |
| "g": "vim::EntireFile" | |
| } | |
| } | |
| ] |
Update: I found the culprit. It's this keybinding that breaks it:
// Center the cursor on the screen when scrolling and find all references { "context": "VimControl && !menu", "bindings": { "shift-g": ["workspace::SendKeystrokes", "shift-g z z"], // this is the problem } },Original message: Has anyone who has used this keymap noticed that it breaks
dG(delete from current line until end of file?). I've gone through the whole keymap and I can't find what would be causing this. When I stop using this keymap,dGworks as usual.
you have any resolve
Can you tell me if there's a way to color while yanking?
Which base_keymap do you use?
I have this weird issue when i am turning off vscode base_keymap(not turning off vim mode), everything brokes, but your ctrl+/ shortcut comments line in vscode keymaps so it overlaps.
Hi if you still using zed, maybe you can update the keybindings? Many options have changed.
hi @K4R7IK I updated the gist to my most recent version, sorry i usually don't see my github notifications
there are some things that can be updated now that we have options like the new text finder which can be used for leader + s + b
thanks you for this
For those who couldn't get
space g glazygit to work, here's what worked for me:tasks.json (
~/.config/zed/tasks.json):[ { "label": "lazygit", "command": "lazygit", "use_new_terminal": false, "allow_concurrent_runs": false, "reveal": "always", "reveal_target": "center", "hide": "always" } ]keymap.json:"space g g": ["task::Spawn", { "task_name": "lazygit" }]