This commit is contained in:
Kovid Goyal 2024-10-19 12:57:34 +05:30
parent 661d8bc5a7
commit ccb5bfd372
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -173,7 +173,10 @@ def detach_tab_parse(func: str, rest: str) -> FuncArgsType:
return func, (rest,)
@func_with_args('set_background_opacity', 'goto_layout', 'toggle_layout', 'toggle_tab', 'kitty_shell', 'show_kitty_doc', 'set_tab_title', 'push_keyboard_mode')
@func_with_args(
'set_background_opacity', 'goto_layout', 'toggle_layout', 'toggle_tab', 'kitty_shell', 'show_kitty_doc',
'set_tab_title', 'push_keyboard_mode', 'dump_lines_with_attrs',
)
def simple_parse(func: str, rest: str) -> FuncArgsType:
return func, [rest]