Prettify powerline.commands.lint
This commit is contained in:
parent
84b0fa0232
commit
d37711a47e
|
@ -6,6 +6,16 @@ import argparse
|
||||||
|
|
||||||
def get_argparser(ArgumentParser=argparse.ArgumentParser):
|
def get_argparser(ArgumentParser=argparse.ArgumentParser):
|
||||||
parser = ArgumentParser(description='Powerline configuration checker.')
|
parser = ArgumentParser(description='Powerline configuration checker.')
|
||||||
parser.add_argument('-p', '--config-path', action='append', metavar='PATH', help='Paths where configuration should be checked, in order. You must supply all paths necessary for powerline to work, checking partial (e.g. only user overrides) configuration is not supported.')
|
parser.add_argument(
|
||||||
parser.add_argument('-d', '--debug', action='store_const', const=True, help='Display additional information. Used for debugging `powerline-lint\' itself, not for debugging configuration.')
|
'-p', '--config-path', action='append', metavar='PATH',
|
||||||
|
help='Paths where configuration should be checked, in order. You must '
|
||||||
|
'supply all paths necessary for powerline to work, '
|
||||||
|
'checking partial (e.g. only user overrides) configuration '
|
||||||
|
'is not supported.'
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'-d', '--debug', action='store_const', const=True,
|
||||||
|
help='Display additional information. Used for debugging '
|
||||||
|
'`powerline-lint\' itself, not for debugging configuration.'
|
||||||
|
)
|
||||||
return parser
|
return parser
|
||||||
|
|
Loading…
Reference in New Issue