File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ func (self *OptionsMenuAction) getBindings(context types.Context) ([]*types.Bind
61
61
62
62
for _ , binding := range bindings {
63
63
if binding .Description != "" {
64
- if binding .ViewName == "" {
64
+ if binding .ViewName == "" || binding . Tag == "global" {
65
65
bindingsGlobal = append (bindingsGlobal , binding )
66
66
} else if binding .ViewName == context .GetViewName () {
67
67
if binding .Tag == "navigation" {
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ func (self *SwitchToFocusedMainViewController) GetKeybindings(opts types.Keybind
32
32
Key : opts .GetKey (opts .Config .Universal .FocusMainView ),
33
33
Handler : self .handleFocusMainView ,
34
34
Description : self .c .Tr .FocusMainView ,
35
+ Tag : "global" ,
35
36
},
36
37
}
37
38
You can’t perform that action at this time.
0 commit comments