diff options
Diffstat (limited to 'completions/rmmod')
-rw-r--r-- | completions/rmmod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/rmmod b/completions/rmmod index 7ec29e6..a57a206 100644 --- a/completions/rmmod +++ b/completions/rmmod @@ -1,10 +1,10 @@ # Linux rmmod(8) completion. -*- shell-script -*- # This completes on a list of all currently installed kernel modules. -_rmmod() +_comp_cmd_rmmod() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return case $prev in -h | --help | -V | --version) @@ -13,12 +13,12 @@ _rmmod() esac if [[ $cur == -* ]]; then - COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")) + _comp_compgen_help return fi - _installed_modules "$cur" + _comp_compgen_inserted_kernel_modules } && - complete -F _rmmod rmmod + complete -F _comp_cmd_rmmod rmmod # ex: filetype=sh |