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"
}
}
]