Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/1] Document that %str and %?str job specifiers only match the last such job.
- X-seq: zsh-workers 39978
- From: Mikel Ward <mbw@xxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 1/1] Document that %str and %?str job specifiers only match the last such job.
- Date: Fri, 18 Nov 2016 12:11:40 -0800
- Cc: Mikel Ward <mbw@xxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=Gb2iTQjtXsB94hpWARiWEx61GNxkYjFCT7XKpKHCiy8=; b=RFrxeWE9hUGaIP1ekjo2aqIj/R3EtAj8Ub9zkNJ6OeJQVeOvTa/I+9kMp6KZ9szFuZ QMpXfEiPN3FYt0JHKibDMyhLTGy7cDeMw94PSKl9vPec4guWaw+WJXMRDNo5lPRhWZIT ozMamvIoEvT+EBBvEBWodzLgFB0IIAMztQtNeWdY19ERlDdIKRdFP2+3+9rctf0ZF/JV kkNFljNNFzqhjqivY/VJJoISzjFgsCY37TJFllgHcv/eraePtXBt/uyfLYQwT0E0bAoi O1ieOzdkVPq5wa3ZYH6PWCUV93cljvcLXVIprm0dXLvduR4ORGOUlLWDSLdauvV/aPaT H3LA==
- 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
$ jobs
[1] - suspended vim
[2] + suspended vim
$ jobs %v
[2] + suspended vim
$ jobs %?v
[2] + suspended vim
---
Doc/Zsh/jobs.yo | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Doc/Zsh/jobs.yo b/Doc/Zsh/jobs.yo
index d939501..6262dd2 100644
--- a/Doc/Zsh/jobs.yo
+++ b/Doc/Zsh/jobs.yo
@@ -74,8 +74,8 @@ or by one of the following:
startsitem()
sitem(tt(%)var(number))(The job with the given number.)
-sitem(tt(%)var(string))(Any job whose command line begins with var(string).)
-sitem(tt(%?)var(string))(Any job whose command line contains var(string).)
+sitem(tt(%)var(string))(The last job whose command line begins with var(string).)
+sitem(tt(%?)var(string))(The last job whose command line contains var(string).)
sitem(tt(%%))(Current job.)
sitem(tt(%PLUS()))(Equivalent to `tt(%%)'.)
sitem(tt(%-))(Previous job.)
--
2.8.0.rc3.226.g39d4020
Messages sorted by:
Reverse Date,
Date,
Thread,
Author