mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 08:18:08 +02:00
Fix a typo that broke addition of default mouse mappings in gen-config
Also update options/types.py with new action name
This commit is contained in:
@@ -568,7 +568,7 @@ class Definition:
|
||||
for x in self.iter_all_non_groups():
|
||||
if isinstance(x, ShortcutMapping) and which in ('map', '*'):
|
||||
yield x
|
||||
elif isinstance(x, MouseMapping) and which == ('mouse_map', '*'):
|
||||
elif isinstance(x, MouseMapping) and which in ('mouse_map', '*'):
|
||||
yield x
|
||||
|
||||
def parser_func(self, name: str) -> Callable:
|
||||
|
||||
Reference in New Issue
Block a user