summaryrefslogtreecommitdiff
path: root/completions/mc
diff options
context:
space:
mode:
Diffstat (limited to 'completions/mc')
-rw-r--r--completions/mc12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/mc b/completions/mc
index 8e96dd97..cf38821c 100644
--- a/completions/mc
+++ b/completions/mc
@@ -6,24 +6,24 @@ _mc()
_init_completion -s || return
case $prev in
- --edit|--view|--ftplog|--printwd|-!(-*)[evlP])
+ --edit | --view | --ftplog | --printwd | -!(-*)[evlP])
_filedir
return
;;
- --help|--help-*|--version|--colors|--debuglevel|-!(-*)[hVCD])
+ --help | --help-* | --version | --colors | --debuglevel | -!(-*)[hVCD])
return
;;
esac
$split && return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" --help-all)' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" --help-all)' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
else
_filedir -d
fi
} &&
-complete -F _mc mc
+ complete -F _mc mc
# ex: filetype=sh