summaryrefslogtreecommitdiffstats
path: root/completions/_cal
diff options
context:
space:
mode:
Diffstat (limited to 'completions/_cal')
-rw-r--r--completions/_cal19
1 files changed, 9 insertions, 10 deletions
diff --git a/completions/_cal b/completions/_cal
index 1eec267..3f8b3ca 100644
--- a/completions/_cal
+++ b/completions/_cal
@@ -3,15 +3,15 @@
# Use of this file is deprecated on Linux. Upstream completion is
# available in util-linux >= 2.23, use that instead.
-_cal()
+_comp_cmd_cal()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
case $prev in
-m)
if [[ $OSTYPE == *bsd* ]]; then
- COMPREPLY=($(compgen -W '{1..12}' -- "$cur"))
+ _comp_compgen -- -W '{1..12}'
return
fi
;;
@@ -24,15 +24,14 @@ _cal()
esac
if [[ $cur == -* ]]; then
- local opts=$(_parse_help "$1")
- COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
+ _comp_compgen_help || _comp_compgen_usage
return
fi
- local args
- _count_args
- ((args == 1)) && COMPREPLY=($(compgen -W '{1..12}' -- "$cur"))
+ local REPLY
+ _comp_count_args
+ ((REPLY == 1)) && _comp_compgen -- -W '{1..12}'
} &&
- complete -F _cal cal ncal
+ complete -F _comp_cmd_cal cal ncal
# ex: filetype=sh