summaryrefslogtreecommitdiff
path: root/completions/p4
diff options
context:
space:
mode:
Diffstat (limited to 'completions/p4')
-rw-r--r--completions/p412
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/p4 b/completions/p4
index beea4687..e383c8cf 100644
--- a/completions/p4
+++ b/completions/p4
@@ -9,22 +9,22 @@ _p4()
local p4commands p4filetypes
# rename isn't really a command
- p4commands="$( p4 help commands 2>/dev/null | awk 'NF>3 {print $1}' )"
+ p4commands="$(p4 help commands 2>/dev/null | awk 'NF>3 {print $1}')"
p4filetypes="ctext cxtext ktext kxtext ltext tempobj ubinary \
uresource uxbinary xbinary xltext xtempobj xtext \
text binary resource"
if [[ $cword -eq 1 ]]; then
- COMPREPLY=( $( compgen -W "$p4commands" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$p4commands" -- "$cur") )
elif [[ $cword -eq 2 ]]; then
case $prev in
help)
- COMPREPLY=( $( compgen -W "simple commands environment
+ COMPREPLY=( $(compgen -W "simple commands environment
filetypes jobview revisions usage views $p4commands" \
- -- "$cur" ) )
+ -- "$cur") )
;;
admin)
- COMPREPLY=( $( compgen -W "checkpoint stop" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "checkpoint stop" -- "$cur") )
;;
*)
;;
@@ -34,7 +34,7 @@ _p4()
-t)
case ${words[$cword-2]} in
add|edit|reopen)
- COMPREPLY=( $( compgen -W "$p4filetypes" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$p4filetypes" -- "$cur") )
;;
*)
;;