mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 18:37:50 +00:00
Sequences should not participate in global shortcuts
This commit is contained in:
parent
53980d00f0
commit
9560968a7d
1 changed files with 1 additions and 1 deletions
|
|
@ -220,7 +220,7 @@ def set_cocoa_global_shortcuts(opts: Options) -> Dict[str, SingleKey]:
|
|||
func_map = defaultdict(list)
|
||||
for k, v in opts.keyboard_modes[''].keymap.items():
|
||||
for kd in v:
|
||||
if not kd.options.when_focus_on and not kd.options.mode and not kd.options.new_mode:
|
||||
if not kd.options.when_focus_on and not kd.options.mode and not kd.options.new_mode and not kd.is_sequence:
|
||||
parts = tuple(kd.definition.split())
|
||||
func_map[parts].append(k)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue