summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rw-r--r--man/man1/fzf.15
-rw-r--r--src/options.go10
3 files changed, 17 insertions, 5 deletions
diff --git a/README.md b/README.md
index 32fad9a5..62530485 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,10 @@ fzf is a general-purpose command-line fuzzy finder.
<img src="https://raw.githubusercontent.com/junegunn/i/master/fzf-preview.png" width=640>
-It's an interactive Unix filter for command-line that can be used with any
-list; files, command history, processes, hostnames, bookmarks, git commits,
-etc.
+It's an interactive filter program for any kind of list; files, command
+history, processes, hostnames, bookmarks, git commits, etc. It implements
+a "fuzzy" matching algorithm, so you can quickly type in patterns with omitted
+characters and still get the results you want.
Pros
----
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 4c7578ae..5a715660 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -30,7 +30,10 @@ fzf - a command-line fuzzy finder
fzf [options]
.SH DESCRIPTION
-fzf is a general-purpose command-line fuzzy finder.
+fzf is an interactive filter program for any kind of list.
+
+It implements a "fuzzy" matching algorithm, so you can quickly type in patterns
+with omitted characters and still get the results you want.
.SH OPTIONS
.SS Note
diff --git a/src/options.go b/src/options.go
index 6d228fe3..ca0d025e 100644
--- a/src/options.go
+++ b/src/options.go
@@ -16,7 +16,15 @@ import (
"github.com/rivo/uniseg"
)
-const Usage = `usage: fzf [options]
+const Usage = `fzf is an interactive filter program for any kind of list.
+
+It implements a "fuzzy" matching algorithm, so you can quickly type in patterns
+with omitted characters and still get the results you want.
+
+Project URL: https://github.com/junegunn/fzf
+Author: Junegunn Choi <junegunn.c@gmail.com>
+
+Usage: fzf [options]
Search
-x, --extended Extended-search mode