We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8cfe05 commit 4b665a7Copy full SHA for 4b665a7
changelog.d/1638.misc.md
@@ -0,0 +1 @@
1
+For shell completions, show `--option` values only when a leading `-` has been entered.
src/pipx/main.py
@@ -1171,7 +1171,7 @@ def cli() -> ExitCode:
1171
try:
1172
hide_cursor()
1173
parser, subparsers = get_command_parser()
1174
- argcomplete.autocomplete(parser)
+ argcomplete.autocomplete(parser, always_complete_options=False)
1175
parsed_pipx_args = parser.parse_args()
1176
setup(parsed_pipx_args)
1177
check_args(parsed_pipx_args)
0 commit comments