diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-12-12 22:44:50 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-12-12 22:44:50 +0000 |
commit | 0a5702457b4074c72b201fb0eeb68b89763c7874 (patch) | |
tree | 0fff9ded114ba57fd4131fa4a43860cafd94b91b /Doc | |
parent | 72d1045da5f38380a8b4bd6fcb02baac21e0a4cf (diff) | |
download | zsh-0a5702457b4074c72b201fb0eeb68b89763c7874.tar.gz zsh-0a5702457b4074c72b201fb0eeb68b89763c7874.tar.xz zsh-0a5702457b4074c72b201fb0eeb68b89763c7874.zip |
28510: add (z+c+) and (z+C+) parameter flags
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Zsh/expn.yo | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index aadc72dfc..5768b82df 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -1006,6 +1006,17 @@ errors are silently ignored. item(tt(z))( Split the result of the expansion into words using shell parsing to find the words, i.e. taking into account any quoting in the value. +Comments are not treated specially but as ordinary strings, similar +to interactive shells with the tt(INTERACTIVE_COMMENTS) option unset. + +The flag can take option letters between a following pair of +`tt(PLUS())' characters. tt(LPAR()z+PLUS()c+PLUS()RPAR()) causes +comments to be parsed as a string and retained; any field in the +resulting array beginning with an unquoted comment character is a +comment. tt(LPAR()z+PLUS()C+PLUS()RPAR()) causes comments to be parsed +and removed. The rule for comments is standard: anything between a word +starting with the third charcter of tt($HISTCHARS), default tt(#), up to +the next newline is a comment. Note that this is done very late, as for the `tt((s))' flag. So to access single words in the result, one has to use nested expansions as |