Shorten python3 completion descriptions

This commit is contained in:
Jason 2020-05-27 23:46:34 +09:00 committed by Fabian Homborg
parent 7cb452c7e7
commit fb57a98aef

View File

@ -17,7 +17,7 @@ complete -c python3 -n __fish_is_first_token -fa "(__fish_complete_suffix .py)"
complete -c python3 -f -n __fish_is_first_token -a - -d 'Read program from stdin'
complete -c python3 -s q -d 'Don\'t print version and copyright messages on interactive startup'
complete -c python3 -s X -x -d 'Set implementation-specific option'
complete -c python3 -s b -d 'Issue warnings about str(bytes_instance), str(bytearray_instance) and comparing bytes/bytearray with str'
complete -c python3 -s b -d 'Issue warnings for possible misuse of `bytes` with `str`'
complete -c python3 -o bb -d 'Issue errors'
complete -c python3 -s m -d 'Run library module as a script (terminates option list)' -xa '(python3 -c "import pkgutil; print(\'\n\'.join([p[1] for p in pkgutil.iter_modules()]))")'