vim: Fix buffer navigation with non-Editor items (#44350)

Closes #44348

Release Notes:

- Fixed buffer navigation in Vim mode with non-Editor items
This commit is contained in:
Mayank Verma
2025-12-09 21:34:24 -07:00
committed by GitHub
parent 4353b8ecd5
commit 728f09f3f4
+5 -1
View File
@@ -902,7 +902,11 @@
"context": "!Editor && !Terminal",
"bindings": {
":": "command_palette::Toggle",
"g /": "pane::DeploySearch"
"g /": "pane::DeploySearch",
"] b": "pane::ActivateNextItem",
"[ b": "pane::ActivatePreviousItem",
"] shift-b": "pane::ActivateLastItem",
"[ shift-b": ["pane::ActivateItem", 0]
}
},
{