Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/2] Complete 'svnadmin freeze' as a precommand.
- X-seq: zsh-workers 38965
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 1/2] Complete 'svnadmin freeze' as a precommand.
- Date: Fri, 29 Jul 2016 17:03:03 +0000
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
---
Completion/Unix/Command/_subversion | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion
index 08ba0e8..5bbc033 100644
--- a/Completion/Unix/Command/_subversion
+++ b/Completion/Unix/Command/_subversion
@@ -183,6 +183,9 @@ _svn () {
_svnadmin () {
local curcontext="$curcontext" state line ret=1
+ integer NORMARG
+ local context state_descr
+ typeset -A opt_args
_arguments -C \
'(-)--help[print help information]' \
@@ -214,11 +217,36 @@ _svnadmin () {
)
if [[ $usage == *REPOS_PATH* ]]; then
args+=( ":repository path:_files -/" )
+ case $cmd in
+ (freeze)
+ args+=( "*:arguments:->normal" )
+ ;;
+ esac
elif [[ $cmd = help ]]; then
args+=( "*:subcommand:_svnadmin_commands" )
fi
- _arguments "$args[@]" && ret=0
+ _arguments -n -s -S : "$args[@]" && ret=0
+
+ case $state in
+ # Test cases:
+ # svnadmin freeze . rsync --<TAB> offers --file
+ # svnadmin freeze -- . rsync -<TAB> offers rsync's options
+ #
+ # Note: the NORMARG calculations here include one positional argument
+ # (the '.') before the command.
+ (normal)
+ if (( ${words[(i)--]} < CURRENT )); then
+ words[1,NORMARG]=()
+ (( CURRENT -= NORMARG ))
+ _normal && ret=0
+ elif (( NORMARG+1 == CURRENT )); then
+ # ### don't allow --options in this case
+ # TODO: this should just use '_normal -F "(-*)"', but _normal ignores its arguments.
+ _command_names -e && ret=0
+ fi
+ ;;
+ esac
else
_message "unknown svnadmin command: $words[1]"
fi
Messages sorted by:
Reverse Date,
Date,
Thread,
Author