diff options
author | Peter Stephenson <pws@zsh.org> | 2014-01-09 10:05:13 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2014-01-09 10:05:13 +0000 |
commit | d26461a3c61b311bdbd58334ee5f8a5113dcdbf2 (patch) | |
tree | 0bd7ce04f457b52718e94d22310ee7340bdbdd9e /Doc/Zsh | |
parent | a34754e962d323ac828a60a233587204c35b7690 (diff) | |
download | zsh-d26461a3c61b311bdbd58334ee5f8a5113dcdbf2.tar.gz zsh-d26461a3c61b311bdbd58334ee5f8a5113dcdbf2.tar.xz zsh-d26461a3c61b311bdbd58334ee5f8a5113dcdbf2.zip |
users/18298 (tidied up): add {<char>..<char>} expansion
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/expn.yo | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 5ba3e21af..8bbe7800b 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -1539,6 +1539,16 @@ specified in any of the three numbers, specifying it in the third can be useful to pad for example `tt({-99..100..01})' which is not possible to specify by putting a 0 on either of the first two numbers (i.e. pad to two characters). +An expression of the form `tt({)var(c1)tt(..)var(c2)tt(})', where +var(c1) and var(c2) are single characters (which may be multibyte +characters), is expanded to every character in the range from var(c1) to +var(c2) in whatever character sequence is used internally. For +characters with code points below 128 this is US ASCII (this is the only +case most users will need). If any intervening character is not +printable, appropriate quotation is used to render it printable. +If the character sequence is reversed, the output is in reverse +order, e.g. `tt({d..a})' is substituted as `tt(d c b a)'. + If a brace expression matches none of the above forms, it is left unchanged, unless the option tt(BRACE_CCL) (an abbreviation for `brace character class') is set. |