outline_panel: Fix j
and k
not working in outline panel filter (#17293)
Closes #17248 Release Notes: - Fixed outline panel filter not working for certain Vim bindings ([#17248](https://github.com/zed-industries/zed/issues/17248))
This commit is contained in:
parent
5b0d64890f
commit
072513f59f
4 changed files with 10 additions and 4 deletions
|
@ -521,7 +521,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"context": "OutlinePanel",
|
||||
"context": "OutlinePanel && not_editing",
|
||||
"bindings": {
|
||||
"escape": "menu::Cancel",
|
||||
"left": "outline_panel::CollapseSelectedEntry",
|
||||
|
|
|
@ -528,7 +528,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"context": "OutlinePanel",
|
||||
"context": "OutlinePanel && not_editing",
|
||||
"bindings": {
|
||||
"escape": "menu::Cancel",
|
||||
"left": "outline_panel::CollapseSelectedEntry",
|
||||
|
|
|
@ -489,7 +489,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"context": "OutlinePanel",
|
||||
"context": "OutlinePanel && not_editing",
|
||||
"bindings": {
|
||||
"j": "menu::SelectNext",
|
||||
"k": "menu::SelectPrev",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue