From 610e9afdf0a17584b80a28dc571b9172a4be2302 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 29 Mar 2020 08:41:27 +0530 Subject: [PATCH] Add completion of conf filenames to kitty @ set-colors --- kitty/rc/set_colors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/rc/set_colors.py b/kitty/rc/set_colors.py index 00739303d..04a4a9960 100644 --- a/kitty/rc/set_colors.py +++ b/kitty/rc/set_colors.py @@ -57,6 +57,7 @@ Restore all colors to the values they had at kitty startup. Note that if you spe this option, any color arguments are ignored and --configured and --all are implied. ''' + '\n\n' + MATCH_WINDOW_OPTION + '\n\n' + MATCH_TAB_OPTION.replace('--match -m', '--match-tab -t') argspec = 'COLOR_OR_FILE ...' + args_completion = {'files': ('CONF files', ('*.conf',))} def message_to_kitty(self, global_opts: RCOptions, opts: 'CLIOptions', args: ArgsType) -> PayloadType: final_colors: Dict[str, int] = {}