diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index 1ea33871..648fb659 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -291,8 +291,8 @@ _jc() { ) jc_options=(--force-color -C --debug -d --monochrome -m --meta-out -M --pretty -p --quiet -q --raw -r --unbuffer -u --yaml-out -y) jc_options_describe=( - '--force-color:force color output even when using pipes (overrides -m)' - '-C:force color output even when using pipes (overrides -m)' + '--force-color:force color output (overrides -m)' + '-C:force color output (overrides -m)' '--debug:debug (double for verbose debug)' '-d:debug (double for verbose debug)' '--monochrome:monochrome output' @@ -323,8 +323,8 @@ _jc() { '-y:YAML output' '--monochrome:monochrome output' '-m:monochrome output' - '--force-color:force color output even when using pipes (overrides -m)' - '-C:force color output even when using pipes (overrides -m)' + '--force-color:force color output (overrides -m)' + '-C:force color output (overrides -m)' ) jc_help_options=(--help -h) jc_help_options_describe=( diff --git a/jc/cli.py b/jc/cli.py index c00aec29..19f039a1 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -283,7 +283,7 @@ class JcCli(): otherwise the general help text is printed. """ self.indent = 4 - self.pad = 20 + self.pad = 22 if self.show_categories: utils._safe_print(self.parser_categories_text()) diff --git a/jc/cli_data.py b/jc/cli_data.py index 6311d97f..426dc3ab 100644 --- a/jc/cli_data.py +++ b/jc/cli_data.py @@ -3,7 +3,7 @@ from typing import List, Dict long_options_map: Dict[str, List[str]] = { '--about': ['a', 'about jc'], - '--force-color': ['C', 'force color output even when using pipes (overrides -m)'], + '--force-color': ['C', 'force color output (overrides -m)'], '--debug': ['d', 'debug (double for verbose debug)'], '--help': ['h', 'help (--help --parser_name for parser documentation)'], '--monochrome': ['m', 'monochrome output'], @@ -92,6 +92,6 @@ Examples: $ jc --help --dig More Help: - $ jc -hh # show hidden parsers - $ jc -hhh # list parsers by category + $ jc -hh # show hidden parsers + $ jc -hhh # list parsers by category tags ''' \ No newline at end of file