Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _tla 1.3.4
- X-seq: zsh-workers 22552
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: _tla 1.3.4
- Date: Sat, 15 Jul 2006 15:08:32 -0400
- Mail-followup-to: zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
A couple of updates for tla 1.3.4.
Index: Completion/Unix/Command/_tla
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_tla,v
retrieving revision 1.6
diff -u -r1.6 _tla
--- Completion/Unix/Command/_tla 17 Apr 2005 13:40:27 -0000 1.6
+++ Completion/Unix/Command/_tla 15 Jul 2006 19:06:59 -0000
@@ -8,8 +8,13 @@
# ask the user which version of tla this is
if ! zstyle -s ":completion:${curcontext}" tla-version tla_version; then
# ask tla instead
- tla_version="${${$($TLA --version)#tla tla-}%% from regexps.com*}"
- [[ $tla_version == *[a-zA-Z]* ]] && tla_version=1.3 # tla doesn't know
+ tla_version="$($TLA --version)"
+ if [[ "${${(f)tla_version}[1]}" == The\ GNU\ Arch\ Revision\ Control\ System\ \(tla\)\ (#b)([0-9.]##) ]]; then
+ tla_version="$match[1]"
+ else
+ tla_version="${${$($TLA --version)#tla tla-}%% from regexps.com*}"
+ [[ $tla_version == *[a-zA-Z]* ]] && tla_version=1.3 # tla doesn't know
+ fi
fi
# test whether to hide short options from completion
@@ -252,8 +257,9 @@
cmd_inventory=('::separator:(--)' '*:directory:_files -/')
cmd_srcfind=($cmd_inventory)
-local cmd_tree_lint
+local cmd_tree_lint cmd_lint
cmd_tree_lint=('::directory:_files -/')
+cmd_lint=($cmd_tree_lint)
local cmd_id cmd_invtag
cmd_id=('*:file:_files')
@@ -417,9 +423,10 @@
local cmd_new_merges
cmd_new_merges=('::version:_tla_versions')
-local cmd_tag cmd_tagrev
+local cmd_tag cmd_tagrev cmd_branch
cmd_tag=(':SOURCE-REVISION:_tla_revisions' ':TAG-VERSION:_tla_versions')
cmd_tagrev=($cmd_tag)
+cmd_branch=($cmd_tag)
local cmd_star_merge
cmd_star_merge=(':FROM:_tla_revisions')
@@ -483,6 +490,12 @@
local cmd_escape
cmd_escape=(':string:')
+local cmd_diff
+cmd_diff=('::revision:_tla_revisions')
+
+local cmd_export
+cmd_export=(':revision:_tla_revisions' ':dir:_files -/')
+
#mutually exclusive options
local -A excludes
Messages sorted by:
Reverse Date,
Date,
Thread,
Author