summaryrefslogtreecommitdiff
path: root/completions/lua
diff options
context:
space:
mode:
Diffstat (limited to 'completions/lua')
-rw-r--r--completions/lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/lua b/completions/lua
index 775eae20..3c4df901 100644
--- a/completions/lua
+++ b/completions/lua
@@ -6,18 +6,18 @@ _lua()
_init_completion || return
case $prev in
- -e|-l|-v|-)
+ -e | -l | -v | -)
return
;;
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W "$(_parse_help "$1")" -- "$cur") )
+ COMPREPLY=($(compgen -W "$(_parse_help "$1")" -- "$cur"))
return
fi
_filedir 'l@(ua|?(ua)c)'
} &&
-complete -F _lua lua
+ complete -F _lua lua
# ex: filetype=sh