summaryrefslogtreecommitdiff
path: root/completions/svk
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
commit5732da2af736c40cf693354485446ab4867ecb4d (patch)
tree76d76cdfa16ca62d20fb109da13895ec64fff110 /completions/svk
parent9cd22d1df8f0f5b554858471c86faa9f37b8fed4 (diff)
downloadbash-completion-5732da2af736c40cf693354485446ab4867ecb4d.tar.gz
New upstream version 2.9upstream/2.9
Diffstat (limited to 'completions/svk')
-rw-r--r--completions/svk31
1 files changed, 15 insertions, 16 deletions
diff --git a/completions/svk b/completions/svk
index d78d3557..f94356e1 100644
--- a/completions/svk
+++ b/completions/svk
@@ -14,11 +14,11 @@ _svk()
propget pg pget proplist pl plist propset ps pset pull push resolved
revert smerge sm status st stat switch sw sync sy update up verify'
- if [[ $cword -eq 1 ]] ; then
+ if [[ $cword -eq 1 ]]; then
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '--version' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--version' -- "$cur") )
else
- COMPREPLY=( $( compgen -W "$commands" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$commands" -- "$cur") )
fi
else
case $prev in
@@ -27,8 +27,7 @@ _svk()
return
;;
--encoding)
- COMPREPLY=( $( compgen -W \
- '$( iconv --list | command sed -e "s@//@@;" )' -- "$cur" ) )
+ _xfunc iconv _iconv_charsets
return
;;
esac
@@ -173,26 +172,26 @@ _svk()
esac
options+=" --help -h"
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$options" -- "$cur") )
else
case $command in
help|h|\?)
- COMPREPLY=( $( compgen -W "$commands environment commands
- intro" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$commands environment commands
+ intro" -- "$cur") )
;;
admin)
- COMPREPLY=( $( compgen -W 'help deltify dump hotcopy
+ COMPREPLY=( $(compgen -W 'help deltify dump hotcopy
list-dblogs list-unused-dblogs load lstxns recover
- rmtxns setlog verify rmcache' -- "$cur" ) )
+ rmtxns setlog verify rmcache' -- "$cur") )
;;
patch)
- COMPREPLY=( $( compgen -W '--ls --list --cat --view
+ COMPREPLY=( $(compgen -W '--ls --list --cat --view
--regen --regenerate --up --update --apply --rm
- --delete' -- "$cur" ) )
+ --delete' -- "$cur") )
;;
sync)
- COMPREPLY=( $( compgen -W "$( $1 mirror --list \
- 2>/dev/null | awk '/^\//{print $1}' )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 mirror --list \
+ 2>/dev/null | awk '/^\//{print $1}')" -- "$cur") )
;;
co|checkout|push|pull)
if [[ "$cur" == //*/* ]]; then
@@ -200,8 +199,8 @@ _svk()
else
path=//
fi
- COMPREPLY=( $( compgen -W "$( $1 list $path 2>/dev/null | \
- command sed -e 's|\(.*\)|'$path'\1|')" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 list $path 2>/dev/null | \
+ command sed -e 's|\(.*\)|'$path'\1|')" -- "$cur") )
;;
*)
_filedir