ionice: New completion.
This commit is contained in:
parent
c3d29e2e0d
commit
d54fcf100e
@ -61,6 +61,61 @@ _look()
|
|||||||
} &&
|
} &&
|
||||||
complete -F _look -o default 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:
|
# Local variables:
|
||||||
# mode: shell-script
|
# mode: shell-script
|
||||||
# sh-basic-offset: 4
|
# sh-basic-offset: 4
|
||||||
|
1
test/completion/ionice.exp
Normal file
1
test/completion/ionice.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions ionice
|
18
test/lib/completions/ionice.exp
Normal file
18
test/lib/completions/ionice.exp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
proc setup {} {
|
||||||
|
save_env
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
proc teardown {} {
|
||||||
|
assert_env_unmodified
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
setup
|
||||||
|
|
||||||
|
|
||||||
|
assert_complete_any "ionice -"
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
teardown
|
Loading…
x
Reference in New Issue
Block a user