Implement --extended-exact option (#24)

This commit is contained in:
Junegunn Choi
2014-03-04 21:29:45 +09:00
parent b22fd6de6d
commit 2dbca00bfb
3 changed files with 59 additions and 18 deletions

View File

@@ -50,6 +50,7 @@ usage: fzf [options]
Options
-m, --multi Enable multi-select
-x, --extended Extended-search mode
-e, --extended-exact Extended-search mode (exact match)
-q, --query=STR Initial query
-f, --filter=STR Filter mode. Do not start interactive finder.
-s, --sort=MAX Maximum number of matched items to sort (default: 1000)
@@ -120,6 +121,9 @@ such as: `^music .mp3$ sbtrkt !rmx`
| `'wild` | Items that include `wild` | exact-match (quoted) |
| `!'fire` | Items that do not include `fire` | inverse-exact-match |
If you don't need fuzzy matching and do not wish to "quote" every word, start
fzf with `-e` or `--extended-exact` option.
Useful examples
---------------