aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes.rudolph@gmail.com>2014-09-02 11:26:44 +0200
committerJohannes Rudolph <johannes.rudolph@gmail.com>2014-09-02 11:26:44 +0200
commit67322dc51d4a7f27221b976d89ade8249aaf3b3a (patch)
tree33ac680daf64b7f7fcf3c2e191e301d3af83c44a
parent899fe41f1ebcab6d695618c29933888202c8225c (diff)
parent65ed29502e16e6102d0325d5a4f8340f2adc7383 (diff)
downloadsbt-boilerplate-67322dc51d4a7f27221b976d89ade8249aaf3b3a.tar.gz
sbt-boilerplate-67322dc51d4a7f27221b976d89ade8249aaf3b3a.tar.bz2
sbt-boilerplate-67322dc51d4a7f27221b976d89ade8249aaf3b3a.zip
Merge branch 'master' of github.com:sbt/sbt-boilerplate
Conflicts: README.md
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index 38414a4..cda8637 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,12 @@ expansion. Expansion follows these rules:
- The current number of arguments `i` is initialized to 22.
- Code embraced in `[#` and `#]` is copied `i` times and the expansion is applied
- recursively with `i` being set accordingly. It is possible to define a custom separator
- between the copied instances by putting the separator text between the `#` and the `]` of the closing
- bracket. If no separator is supplied `", "` is assumed.
+ recursively with `i` being set accordingly.
+ - It is possible to define a custom separator
+ between the copied instances by putting the separator text between the `#` and the `]` of the closing
+ bracket. If no separator is supplied `", "` is assumed.
+ - You can specify a custom range `i` should iterate through by placing a term of the form `<start>..<end>` between
+ the starting `[` and `#` of an expansion. Either `start` or `end` can be omitted in which case the defaults are assumed.
- Everywhere digit `1` is replaced by `i`, digit `0` is replaced by `i - 1`, and digit `2` is replaced by `i + 1`
unless the digit is prefixed with `##`.