Fix typo in man page

This commit is contained in:
Junegunn Choi 2015-03-26 10:28:14 +09:00
parent fdaa4e9b18
commit 39f43587d0

View File

@ -155,26 +155,26 @@ of field index expressions.
With \fI-x\fR or \fI--extended\fR option, fzf will start in "extended-search With \fI-x\fR or \fI--extended\fR option, fzf will start in "extended-search
mode". In this mode, you can specify multiple patterns delimited by spaces, mode". In this mode, you can specify multiple patterns delimited by spaces,
such as: \fB^music .mp3$ sbtrkt !rmx\fR such as: \fB'wild ^music .mp3$ sbtrkt !rmx\fR
.SS Exact-match (quoted) .SS Exact-match (quoted)
A term that is prefixed by a single-quote character (') is interpreted as an A term that is prefixed by a single-quote character (') is interpreted as an
"exact-match" (or "non-fuzzy") term. fzf will search for the exact occurrence "exact-match" (or "non-fuzzy") term. fzf will search for the exact occurrences
of the string. of the string.
.SS Anchored-match .SS Anchored-match
A term can be prefixed by ^, or suffixed by $ to become an anchored-match term A term can be prefixed by ^, or suffixed by $ to become an anchored-match term.
and used to search items that starts with or ends with the given string. Then fzf will search for the items that start with or end with the given
An anchored-match term is also an exact-match term. string. An anchored-match term is also an exact-match term.
.SS Negation .SS Negation
If a term is prefixed by !, fzf will exclude the items that matches the term If a term is prefixed by !, fzf will exclude the items that matches the term
from the result. from the result.
.SS Extended-exact mode .SS Extended-exact mode
If you don't need fuzzy matching at all and do not wish to "quote" every word, If you don't need fuzzy matching at all and do not wish to "quote" (prefixing
start fzf with \fI-e\fR or \fI--extended-exact\fR option (instead of \fI-x\fR or with ') every word, start fzf with \fI-e\fR or \fI--extended-exact\fR option
\fI--extended\fR). (instead of \fI-x\fR or \fI--extended\fR).
.SH AUTHOR .SH AUTHOR
Junegunn Choi (junegunn.c@gmail.com) Junegunn Choi (junegunn.c@gmail.com)