aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-05 00:09:30 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-05 00:09:30 -0800
commit4350d996d1f4987ae83569acfdec2e25b996f599 (patch)
tree835ab3332ec593c748f4eabd7490266b2e22aa30 /README.md
parent8d14bf01bc3c3cfbb3613487b59fe0bc4d6efba6 (diff)
Simplified `...` to `..%\n` and `$.` to `./\n`
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 04bfba4..e3f41ed 100644
--- a/README.md
+++ b/README.md
@@ -33,10 +33,9 @@ Pattern | Meaning
-------------------|---------------------
`pat1 pat2` | `pat1` followed by `pat2`
`pat1 / pat2` | `pat1` if it matches, otherwise `pat2`
-`...pat` | Any text up to and including `pat` (including newlines)
`..pat` | Any text up to and including `pat` (except newlines)
+`..pat1 % pat2` | Any text up to and including `pat1` (except newlines), skipping over instances of `pat2`
`.` | Any single character (except newline)
-`$.` | Any single character (including newline)
`^^` | The start of the input
`^` | The start of a line
`$$` | The end of the input