summaryrefslogtreecommitdiff
path: root/completions/xrdb
diff options
context:
space:
mode:
Diffstat (limited to 'completions/xrdb')
-rw-r--r--completions/xrdb10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/xrdb b/completions/xrdb
index d9f11439..f46f90b9 100644
--- a/completions/xrdb
+++ b/completions/xrdb
@@ -6,22 +6,22 @@ _xrdb()
_init_completion || return
case $prev in
- -backup|-display|-help)
+ -backup | -display | -help)
return
;;
- -cpp|-edit)
+ -cpp | -edit)
_filedir
return
;;
esac
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
return
fi
_filedir
} &&
-complete -F _xrdb xrdb
+ complete -F _xrdb xrdb
# ex: filetype=sh