Zed editor

https://cheatsheets.zip/zed

Shortcuts

ctrl shift pCommand palette
ctrl .Toogle action on current symbol
Code
ctrl shift kDelete line
alt up arrowMove current line up / down
ctrl /Comment / uncomment selected lines
Find
ctrl pSearch project file name
ctrl hFind and replace in current buffer
ctrl shift hFind and replace in current project
Navigation
ctrl k left-arrowActivate pane left
ctrl k right-arrowActivate pane right

settings.json

in zed editor, I have set show_menus to true in settings.json: "title_bar": { "show_menus": true } When I am editing code, whet is the keyboard shortcu to navigate through the menus ? https://zed.dev/docs/reference/all-settings + kevnu.com
Open settings.json ctrl alt ,
Open settings ctrl ,
{
    // disable auto-formatting
    "format_on_save": "off",

    // always show menus
    "title_bar": {
        "show_menus": true
    },
    
    "git": {
        // don't show author of each line
        "inline_blame": {
            "enabled": false
        }
    },
    
    // don't reuse current buffer when opening a file
    "preview_tabs": {
        "enabled": false
    },
    
    // Explicitely display != instead of glyphs
    "ui_font_features": {
        "calt": false,
        "liga": false
    },
    "buffer_font_features": {
        "calt": false,
        "liga": false
    },
    
    // don't display stars on empty lines inside a comment /*  */
    "extend_comment_on_newline": false,

    // fuck off AI
    "disable_ai": true,
}  

keymap.json

Open keymaps ctrl k ctrl s
[
    // loop through open files in the order they are displayed
    {
        "context": "Workspace",
        "bindings": {
            "ctrl-tab": "pane::ActivateNextItem",
            "ctrl-shift-tab": "pane::ActivatePreviousItem"
        }
    }
]

Configuration files

General settings ~/.config/zed/settings.json
Keymap ~/.config/zed/keymap.json
Project settings <project dir>/.zed/settings.json
Installed extensions ~/.local/share/zed/extensions/installed

Actions namespaces

NamespacePurposeExample Actions
editor Text editing operations MoveUp, SelectAll, Cut
workspace Workspace-level commands Save, CloseWindow, ToggleLeftDock
pane Pane management ActivateNextItem, CloseActiveItem
menu Menu interactions SelectNext, Confirm, Cancel
agent AI agent operations Chat, NewThread, ToggleModelSelector
git Version control Blame, Commit, Branch
buffer_search In-buffer search Deploy, Dismiss, FocusEditor
zed Application-level Quit, OpenSettings, ToggleFullScreen