summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 997ec7c7..a5d2e954 100644
--- a/README.md
+++ b/README.md
@@ -113,16 +113,16 @@ vim $(fzf)
Unless otherwise specified, fzf starts in "extended-search mode" where you can
type in multiple search terms delimited by spaces. e.g. `^music .mp3$ sbtrkt
-!rmx`
-
-| Token | Match type | Description |
-| -------- | -------------------- | -------------------------------- |
-| `sbtrkt` | fuzzy-match | Items that match `sbtrkt` |
-| `^music` | prefix-exact-match | Items that start with `music` |
-| `.mp3$` | suffix-exact-match | Items that end with `.mp3` |
-| `'wild` | exact-match (quoted) | Items that include `wild` |
-| `!rmx` | inverse-fuzzy-match | Items that do not match `rmx` |
-| `!'fire` | inverse-exact-match | Items that do not include `fire` |
+!fire`
+
+| Token | Match type | Description |
+| -------- | -------------------------- | --------------------------------- |
+| `sbtrkt` | fuzzy-match | Items that match `sbtrkt` |
+| `^music` | prefix-exact-match | Items that start with `music` |
+| `.mp3$` | suffix-exact-match | Items that end with `.mp3` |
+| `'wild` | exact-match (quoted) | Items that include `wild` |
+| `!fire` | inverse-exact-match | Items that do not include `fire` |
+| `!.mp3$` | inverse-suffix-exact-match | Items that do not end with `.mp3` |
If you don't prefer fuzzy matching and do not wish to "quote" every word,
start fzf with `-e` or `--exact` option. Note that when `--exact` is set,