diff options
| author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-07-29 17:03:04 +0000 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-07-31 16:21:31 +0000 |
| commit | 625fe0fce898742ab6f14c5cc3dbfb1a89265a83 (patch) | |
| tree | f63aa8a4c69171c7388f650ba1e2394bdb8abba5 /Completion/Unix/Command/_subversion | |
| parent | 38965: _svnadmin: Complete 'freeze' as a precommand. (diff) | |
| download | zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar.gz zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar.bz2 zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar.lz zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar.xz zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.tar.zst zsh-625fe0fce898742ab6f14c5cc3dbfb1a89265a83.zip | |
38966: _svnadmin: Complete positional arguments for 'hotcopy', 'setlog', 'setrevprop', 'delrevprop'.
Diffstat (limited to 'Completion/Unix/Command/_subversion')
| -rw-r--r-- | Completion/Unix/Command/_subversion | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion index 2c21aa740..7d15cf9e3 100644 --- a/Completion/Unix/Command/_subversion +++ b/Completion/Unix/Command/_subversion @@ -221,6 +221,18 @@ _svnadmin () { (freeze) args+=( "*:arguments:->normal" ) ;; + (hotcopy) + args+=( ":new repository:_files -/" ) + ;; + (setlog) + args+=( ": :_files" ) + ;; + (setrevprop) + args+=( ":property name" ":property value file:_files" ) + ;; + (delrevprop) + args+=( ":property name" ) + ;; esac elif [[ $cmd = help ]]; then args+=( "*:subcommand:_svnadmin_commands" ) |
