From 30d49745092010e6570c6a18f299eb57b436c194 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 16 Nov 2013 01:55:33 +0900 Subject: [PATCH] Update README --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b33bebe..ec644b4 100644 --- a/README.md +++ b/README.md @@ -120,14 +120,14 @@ With `-x` or `--extended` option, fzf will start in "extended mode". In extended mode, you can specify multiple patterns delimited by spaces, such as: `^music .mp3$ sbtrkt !rmx` -| Token | Description | Match type | -| ----------- | -------------------------------- | -------------------- | -| `^music` | Items that start with `music` | prefix-exact-match | -| `.mp3$` | Items that end with `.mp3` | suffix-exact-match | -| `sbtrkt` | Items that match `sbtrkt` | fuzzy-match | -| `!rmx` | Items that do not match `rmx` | invert-fuzzy-match | -| `'wild` | Items that include `wild` | exact-match | -| `!'fire` | Items that do not include `fire` | invert-exact-match | +| Token | Description | Match type | +| -------- | -------------------------------- | -------------------- | +| `^music` | Items that start with `music` | prefix-exact-match | +| `.mp3$` | Items that end with `.mp3` | suffix-exact-match | +| `sbtrkt` | Items that match `sbtrkt` | fuzzy-match | +| `!rmx` | Items that do not match `rmx` | inverse-fuzzy-match | +| `'wild` | Items that include `wild` | exact-match (quoted) | +| `!'fire` | Items that do not include `fire` | inverse-exact-match | Usage as Vim plugin -------------------