From 1f42c301146fa7e9b4bff17c39efda628a148b8f Mon Sep 17 00:00:00 2001 From: Jason Nader Date: Thu, 27 Feb 2020 22:44:12 +0900 Subject: [PATCH] python: shorten completion description --- share/completions/python.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/completions/python.fish b/share/completions/python.fish index 4a01a0cda..65a611e76 100644 --- a/share/completions/python.fish +++ b/share/completions/python.fish @@ -25,5 +25,5 @@ complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s2"' -s t -d "Warn complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s2"' -s Q -x -a "old new warn warnall" -d "Division control" complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -s q -d 'Don\'t print version and copyright messages on interactive startup' complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -s X -x -d 'Set implementation-specific option' -complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -s b -d 'Issue warnings about str(bytes_instance), str(bytearray_instance) and comparing bytes/bytearray with str' -complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -o bb -d 'Issue errors' +complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -s b -d 'Warn when comparing bytes with str or int' +complete -c python -n 'python -V 2>&1 | string match -rq "^.*\s3"' -o bb -d 'Error when comparing bytes with str or int'