Users who know the short options can just hit the short option instead of tab, and it's not likely that it would be helpful to present a list of single character options to users who don't know them, doing so just unnecessarily trashes the list of suggestions. Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
25 lines
520 B
Text
25 lines
520 B
Text
_addpart_module()
|
|
{
|
|
local cur prev
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
case $COMP_CWORD in
|
|
1)
|
|
local DEVS=''
|
|
while read dev; do DEVS+="$dev " ; done < <(lsblk -pnro name)
|
|
OPTS="--help --version $DEVS"
|
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
|
;;
|
|
2)
|
|
# FIXME: how to determine next free partition number
|
|
;;
|
|
3)
|
|
COMPREPLY=( $(compgen -W "start" -- $cur) )
|
|
;;
|
|
4)
|
|
COMPREPLY=( $(compgen -W "length" -- $cur) )
|
|
;;
|
|
esac
|
|
return 0
|
|
}
|
|
complete -F _addpart_module addpart
|