summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-05-05 20:11:59 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-05-05 20:11:59 +0000
commitc687e5f515d661919f2a73b63fa880902ff001e1 (patch)
tree9aaf9c8572007c8703657761206f767b672dce87
parent080155607ede1e392a8aaab446b1b345b54e492f (diff)
downloadzsh-c687e5f515d661919f2a73b63fa880902ff001e1.tar.gz
zsh-c687e5f515d661919f2a73b63fa880902ff001e1.zip
Fix subscript flag descriptions
-rw-r--r--ChangeLog6
-rw-r--r--Completion/Zsh/Context/_subscript21
2 files changed, 16 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 09ce4f4bd..077f59115 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
+2001-05-05 Bart Schaefer <schaefer@zsh.org>
+
+ * 14230: Completion/Zsh/Context/_subscript: Fix flag descriptions.
+
2001-05-04 Oliver Kiddle <opk@zsh.org>
- * 14227: Completion/Zsh/Context/_subscript, complete subscript flags
+ * 14227: Completion/Zsh/Context/_subscript: Complete subscript flags.
2001-05-04 Bart Schaefer <schaefer@zsh.org>
diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript
index c5e80d0ea..83cacc9af 100644
--- a/Completion/Zsh/Context/_subscript
+++ b/Completion/Zsh/Context/_subscript
@@ -19,12 +19,12 @@ elif compset -P '\('; then
case ${(Pt)${compstate[parameter]}} in
assoc*) flags=(
- '(R k K i I)r[return first matching value]'
- '(r k K i I)R[return value of first matching key]'
- '(r R K i I)k[return all values with matching keys]'
- '(r R k i I)K[return value of first matching key]'
- '(r R k K I)i[return first matching key]'
- '(r R k K i)I[return all matching keys]'
+ '(R k K i I)r[any one value matched by subscript as pattern]'
+ '(r k K i I)R[all values matched by subscript as pattern]'
+ '(r R K i I)k[any one value where subscript matched by key as pattern]'
+ '(r R k i I)K[all values where subscript matched by key as pattern]'
+ '(r R k K I)i[any one key matched by subscript as pattern]'
+ '(r R k K i)I[all keys matched by subscript as pattern]'
);;
(|scalar*)) flags=(
'w[make subscripting work on words of scalar]'
@@ -32,11 +32,12 @@ elif compset -P '\('; then
'p[recognise escape sequences in subsequent s flag]'
);&
array*) flags=($flags
- 'n[specify match to return]'
+ 'n[Nth lowest/highest index with i/I/r/R flag]'
'b[begin with specified element]'
- '(r R k K i)I[reverse subscript giving index of last match]'
- '(r k K i I)R[reverse subscripting giving last match]'
- '(R k K i I)r[reverse subscripting giving first match]'
+ '(r R k K i)I[highest index of value matched by subscript]'
+ '(r R k K I)i[lowest index of value matched by subscript]'
+ '(r k K i I)R[value matched by subscript at highest index]'
+ '(R k K i I)r[value matched by subscript at lowest index]'
);;
esac