summaryrefslogtreecommitdiff
path: root/completions/geoiplookup
diff options
context:
space:
mode:
Diffstat (limited to 'completions/geoiplookup')
-rw-r--r--completions/geoiplookup6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/geoiplookup b/completions/geoiplookup
index 8347728f..c60be898 100644
--- a/completions/geoiplookup
+++ b/completions/geoiplookup
@@ -6,7 +6,7 @@ _geoiplookup()
_init_completion || return
case $prev in
- -h|-'?'|-v)
+ -h | -'?' | -v)
return
;;
-d)
@@ -20,7 +20,7 @@ _geoiplookup()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_usage "$1" -h)' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_usage "$1" -h)' -- "$cur"))
return
fi
@@ -28,6 +28,6 @@ _geoiplookup()
[[ $1 == *6 ]] && ipvx=-6 || ipvx=-4
_known_hosts_real $ipvx -- "$cur"
} &&
-complete -F _geoiplookup geoiplookup geoiplookup6
+ complete -F _geoiplookup geoiplookup geoiplookup6
# ex: filetype=sh