Add some python option arg non-completions.

This commit is contained in:
Ville Skyttä 2010-11-21 20:30:42 +02:00
parent 4b2c511e2d
commit d5a7346390

View File

@ -9,6 +9,9 @@ _python()
_get_comp_words_by_ref cur prev
case $prev in
-'?'|-h|--help|-V|--version|-m)
return 0
;;
-Q)
COMPREPLY=( $( compgen -W "old new warn warnall" -- "$cur" ) )
return 0