mirror of
https://github.com/powerline/powerline.git
synced 2025-07-26 23:35:04 +02:00
Allow multiple arguments to powerline[-lint] --config_path
This commit is contained in:
parent
780c919d88
commit
3d1f9bfbbd
@ -1133,8 +1133,8 @@ theme_spec = (Spec(
|
|||||||
).context_message('Error while loading theme'))
|
).context_message('Error while loading theme'))
|
||||||
|
|
||||||
|
|
||||||
def check(path=None, debug=False):
|
def check(paths=None, debug=False):
|
||||||
search_paths = [path] if path else get_config_paths()
|
search_paths = paths or get_config_paths()
|
||||||
find_config_file = generate_config_finder(lambda: search_paths)
|
find_config_file = generate_config_finder(lambda: search_paths)
|
||||||
|
|
||||||
logger = logging.getLogger('powerline-lint')
|
logger = logging.getLogger('powerline-lint')
|
||||||
|
@ -34,10 +34,7 @@ class ShellPowerline(Powerline):
|
|||||||
return r
|
return r
|
||||||
|
|
||||||
def get_config_paths(self):
|
def get_config_paths(self):
|
||||||
if self.args.config_path:
|
return self.args.config_path or super(ShellPowerline, self).get_config_paths()
|
||||||
return [self.args.config_path]
|
|
||||||
else:
|
|
||||||
return super(ShellPowerline, self).get_config_paths()
|
|
||||||
|
|
||||||
def get_local_themes(self, local_themes):
|
def get_local_themes(self, local_themes):
|
||||||
if not local_themes:
|
if not local_themes:
|
||||||
@ -63,7 +60,7 @@ def get_argparser(parser=None, *args, **kwargs):
|
|||||||
p.add_argument('-c', '--config', metavar='KEY.KEY=VALUE', action='append', help='Configuration overrides for `config.json\'. Is translated to a dictionary and merged with the dictionary obtained from actual JSON configuration: KEY.KEY=VALUE is translated to `{"KEY": {"KEY": VALUE}}\' and then merged recursively. VALUE may be any JSON value, values that are not `null\', `true\', `false\', start with digit, `{\', `[\' are treated like strings. If VALUE is omitted then corresponding key is removed.')
|
p.add_argument('-c', '--config', metavar='KEY.KEY=VALUE', action='append', help='Configuration overrides for `config.json\'. Is translated to a dictionary and merged with the dictionary obtained from actual JSON configuration: KEY.KEY=VALUE is translated to `{"KEY": {"KEY": VALUE}}\' and then merged recursively. VALUE may be any JSON value, values that are not `null\', `true\', `false\', start with digit, `{\', `[\' are treated like strings. If VALUE is omitted then corresponding key is removed.')
|
||||||
p.add_argument('-t', '--theme_option', metavar='THEME.KEY.KEY=VALUE', action='append', help='Like above, but theme-specific. THEME should point to an existing and used theme to have any effect, but it is fine to use any theme here.')
|
p.add_argument('-t', '--theme_option', metavar='THEME.KEY.KEY=VALUE', action='append', help='Like above, but theme-specific. THEME should point to an existing and used theme to have any effect, but it is fine to use any theme here.')
|
||||||
p.add_argument('-R', '--renderer_arg', metavar='KEY=VAL', action='append', help='Like above, but provides argument for renderer. Is supposed to be used only by shell bindings to provide various data like last_exit_code or last_pipe_status (they are not using --renderer_arg for historical resons: renderer_arg was added later).')
|
p.add_argument('-R', '--renderer_arg', metavar='KEY=VAL', action='append', help='Like above, but provides argument for renderer. Is supposed to be used only by shell bindings to provide various data like last_exit_code or last_pipe_status (they are not using --renderer_arg for historical resons: renderer_arg was added later).')
|
||||||
p.add_argument('-p', '--config_path', metavar='PATH', help='Path to configuration directory. If it is present then configuration files will only be seeked in the provided path.')
|
p.add_argument('-p', '--config_path', action='append', metavar='PATH', help='Path to configuration directory. If it is present then configuration files will only be seeked in the provided path. May be provided multiple times to search in a list of directories.')
|
||||||
return p
|
return p
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import sys
|
|||||||
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description=__doc__)
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
parser.add_argument('-p', '--config_path', metavar='PATH')
|
parser.add_argument('-p', '--config_path', action='append', metavar='PATH')
|
||||||
parser.add_argument('-d', '--debug', action='store_const', const=True)
|
parser.add_argument('-d', '--debug', action='store_const', const=True)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -90,7 +90,7 @@ class TestParser(TestCase):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'config_path': '.',
|
'config_path': ['.'],
|
||||||
'renderer_arg': {'smth': {'abc': 'def'}},
|
'renderer_arg': {'smth': {'abc': 'def'}},
|
||||||
}),
|
}),
|
||||||
(['shell', '-R', 'arg=true'], {'ext': ['shell'], 'renderer_arg': {'arg': True}}),
|
(['shell', '-R', 'arg=true'], {'ext': ['shell'], 'renderer_arg': {'arg': True}}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user