summaryrefslogtreecommitdiff
path: root/completions/_hexdump
diff options
context:
space:
mode:
Diffstat (limited to 'completions/_hexdump')
-rw-r--r--completions/_hexdump6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/_hexdump b/completions/_hexdump
index a3c2a839..785f5976 100644
--- a/completions/_hexdump
+++ b/completions/_hexdump
@@ -9,7 +9,7 @@ _hexdump()
_init_completion || return
case $prev in
- -V|-e|-n|-s)
+ -V | -e | -n | -s)
return
;;
-f)
@@ -20,12 +20,12 @@ _hexdump()
if [[ $cur == -* ]]; then
local opts="$(_parse_help "$1")"
- COMPREPLY=( $(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur") )
+ COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
return
fi
_filedir
} &&
-complete -F _hexdump hexdump hd
+ complete -F _hexdump hexdump hd
# ex: filetype=sh