cppcheck: Complete --std= option arguments

See: afed93d7d6
This commit is contained in:
Igor Murzov 2011-09-16 21:06:25 +04:00
parent e3345a27b6
commit a1b8148d23

View File

@ -33,6 +33,10 @@ _cppcheck()
COMPREPLY=( $( compgen -W '{2..16}' -- "$cur" ) )
return
;;
--std)
COMPREPLY=( $( compgen -W 'posix' -- "$cur" ) )
return
;;
--xml-version)
COMPREPLY=( $( compgen -W '1 2' -- "$cur" ) )
return