Add wodim minbuf= completion.

This commit is contained in:
Ville Skyttä 2010-10-23 12:48:53 +03:00
parent 8ccda052b3
commit 4bcd37d800

View File

@ -38,6 +38,11 @@ _cdrecord()
COMPREPLY=( $( compgen -W "$( $1 driver=help 2>&1 | \
awk 'NR > 1 { print $1 }' ) help" -- "$cur" ) )
;;
minbuf)
compopt +o nospace &>/dev/null
COMPREPLY=( $( compgen -W "$( seq 25 95 2>/dev/null )" \
-- "$cur" ) )
;;
esac
return 0
fi