summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-06-20 17:43:42 +0200
committerCanop <cano.petrole@gmail.com>2020-06-20 17:43:42 +0200
commit249bbd42bcf6df8351c0929c7e749bab9ef148ad (patch)
treec8cb5bd90600753f41016d4841ce99764b3419e4 /README.md
parent62405df7c20b3cbc11ec16f853227f8ff0bc2ccd (diff)
more subtle rules on pattern combination parsing
For example a closing parenthesis at the very start can only be part of a pattern, not an interpattern token.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e9c1c94..e78970c 100644
--- a/README.md
+++ b/README.md
@@ -74,7 +74,7 @@ You may also search with a regular expression. To do this, add a `/` before the
And you have other types of searches, for example searching on file content (start with `c/`):
-![content search](website/docs/img/20200608-content-search.png)
+![content search](website/docs/img/20200620-content-memm.png)
You may also apply logical operators or combine patterns, for example searching `test` in all files except txt ones could be `!/txt$/&c/test` and searching `carg` both in file names and file contents would be `carg|c/carg`.