mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Add no_op to get_all_actions()
This commit is contained in:
parent
8fb48d7952
commit
d7a1f3104a
1 changed files with 3 additions and 0 deletions
|
|
@ -63,6 +63,9 @@ def get_all_actions() -> Dict[str, List[Action]]:
|
|||
seen.add(name)
|
||||
ans['win'].append(Action(name, 'win', f'Focus the {which} window', ''))
|
||||
|
||||
ans['misc'].append(Action('no_op', 'misc', 'Unbind a shortcut',
|
||||
'Mapping a shortcut to no_op causes kitty to not intercept the key stroke anymore,'
|
||||
' instead passing it to the program running inside it.'))
|
||||
return ans
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue