summaryrefslogtreecommitdiff
path: root/completions/id
diff options
context:
space:
mode:
Diffstat (limited to 'completions/id')
-rw-r--r--completions/id6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/id b/completions/id
index 137a5f7e..3f3087cb 100644
--- a/completions/id
+++ b/completions/id
@@ -6,11 +6,11 @@ _id()
_init_completion || return
if [[ "$cur" == -* ]]; then
- local opts=$( _parse_help "$1" )
+ local opts=$(_parse_help "$1")
[[ $opts ]] || opts="-G -g -u" # POSIX fallback
- COMPREPLY=( $( compgen -W "$opts" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$opts" -- "$cur") )
else
- COMPREPLY=( $( compgen -u "$cur" ) )
+ COMPREPLY=( $(compgen -u "$cur") )
fi
} &&
complete -F _id id