Compare commits

...

1 Commits

Author SHA1 Message Date
Peter Tripp
d5e93c08d1 vim: Support keyboard navigation of context menus and code actions 2025-06-25 12:42:40 -04:00

View File

@@ -834,6 +834,24 @@
"g g": "menu::SelectFirst"
}
},
{
"context": "menu",
"bindings": {
"j": "menu::SelectNext",
"k": "menu::SelectPrevious",
"shift-g": "menu::SelectLast",
"g g": "menu::SelectFirst"
}
},
{
"context": "Editor && showing_code_actions",
"bindings": {
"j": "editor::ContextMenuNext",
"k": "editor::ContextMenuPrevious",
"shift-g": "editor::ContextMenuLast",
"g g": "editor::ContextMenuFirst"
}
},
{
"context": "GitPanel && ChangesList",
"use_key_equivalents": true,