mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
Scope the left and right bindings in the project panel
This commit is contained in:
parent
41fea2de1c
commit
18a379f20c
1 changed files with 2 additions and 2 deletions
|
@ -69,8 +69,8 @@ pub fn init(cx: &mut MutableAppContext) {
|
|||
cx.add_action(ProjectPanel::select_next);
|
||||
cx.add_action(ProjectPanel::open_entry);
|
||||
cx.add_bindings([
|
||||
Binding::new("right", ExpandSelectedEntry, None),
|
||||
Binding::new("left", CollapseSelectedEntry, None),
|
||||
Binding::new("right", ExpandSelectedEntry, Some("ProjectPanel")),
|
||||
Binding::new("left", CollapseSelectedEntry, Some("ProjectPanel")),
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue