summaryrefslogtreecommitdiffstats
path: root/completions/webmitm
diff options
context:
space:
mode:
Diffstat (limited to 'completions/webmitm')
-rw-r--r--completions/webmitm12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/webmitm b/completions/webmitm
index 549c5ef..df6faa2 100644
--- a/completions/webmitm
+++ b/completions/webmitm
@@ -1,17 +1,17 @@
# webmitm completion -*- shell-script -*-
-_webmitm()
+_comp_cmd_webmitm()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
+ _comp_compgen_usage
else
- _known_hosts_real -- "$cur"
+ _comp_compgen_known_hosts -- "$cur"
fi
} &&
- complete -F _webmitm webmitm
+ complete -F _comp_cmd_webmitm webmitm
# ex: filetype=sh