summaryrefslogtreecommitdiffstats
path: root/website/docs/index.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 /website/docs/index.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 'website/docs/index.md')
-rw-r--r--website/docs/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/docs/index.md b/website/docs/index.md
index b76ce83..b61db43 100644
--- a/website/docs/index.md
+++ b/website/docs/index.md
@@ -42,7 +42,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](img/20200608-content-search.png)
+![content search](img/20200620-content-memm.png)
You may also apply logical operators or combine patterns, for example searching `test` in all files except json ones could be `!/json$/&c/test` and searching `carg` both in file names and file contents would be `carg|c/carg`.