ionice: New completion.

This commit is contained in:
Ville Skyttä 2011-10-03 23:57:34 +03:00
parent c3d29e2e0d
commit d54fcf100e
3 changed files with 74 additions and 0 deletions

View File

@ -61,6 +61,61 @@ _look()
} &&
complete -F _look -o default look
have ionice &&
_ionice()
{
local cur prev words cword
_init_completion || return
local offset=0 i
for (( i=1; i <= cword; i++ )); do
case ${words[i]} in
-h)
return
;;
-p)
offset=0
break
;;
-c|-n)
(( i++ ))
continue
;;
-*)
continue
;;
esac
offset=$i
break
done
if [[ $offset -gt 0 ]]; then
_command_offset $offset
return
fi
case $prev in
-c)
COMPREPLY=( $( compgen -W '{0..3}' -- "$cur" ) )
return
;;
-n)
COMPREPLY=( $( compgen -W '{0..7}' -- "$cur" ) )
return
;;
-p)
_pids
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" -h )' -- "$cur" ) )
return
fi
} &&
complete -F _ionice ionice
# Local variables:
# mode: shell-script
# sh-basic-offset: 4

View File

@ -0,0 +1 @@
assert_source_completions ionice

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "ionice -"
sync_after_int
teardown