summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-11-19 09:58:07 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-11-19 09:58:07 +0900
commit1c202555048a399ed21eeada0e81f81d5a999edf (patch)
treef66f28c2e56f0f32bbf9e246c6a47e6f78852da0
parent1fd884b34f2ac84ab73960a931b886732e70dd13 (diff)
Fix typos in help message
Close #425. Thanks to @blueyed.
-rwxr-xr-xfzf4
-rw-r--r--src/options.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/fzf b/fzf
index 17f86b51..62893af4 100755
--- a/fzf
+++ b/fzf
@@ -370,7 +370,7 @@ class FZF
+i Case-sensitive match
-n, --nth=N[,..] Comma-separated list of field index expressions
for limiting search scope. Each can be a non-zero
- integer or a range expression ([BEGIN]..[END])
+ integer or a range expression ([BEGIN]..[END]).
--with-nth=N[,..] Transform the item using index expressions for search
-d, --delimiter=STR Field delimiter regex for --nth (default: AWK-style)
@@ -396,7 +396,7 @@ class FZF
Environment variables
FZF_DEFAULT_COMMAND Default command to use when input is tty
- FZF_DEFAULT_OPTS Defaults options. (e.g. "-x -m --sort 10000")] + $/ + $/
+ FZF_DEFAULT_OPTS Default options (e.g. "-x -m --sort 10000")] + $/ + $/
exit x
end
diff --git a/src/options.go b/src/options.go
index d1f82014..169b1055 100644
--- a/src/options.go
+++ b/src/options.go
@@ -22,7 +22,7 @@ const usage = `usage: fzf [options]
+i Case-sensitive match
-n, --nth=N[,..] Comma-separated list of field index expressions
for limiting search scope. Each can be a non-zero
- integer or a range expression ([BEGIN]..[END])
+ integer or a range expression ([BEGIN]..[END]).
--with-nth=N[,..] Transform item using index expressions within finder
-d, --delimiter=STR Field delimiter regex for --nth (default: AWK-style)
+s, --no-sort Do not sort the result
@@ -59,7 +59,7 @@ const usage = `usage: fzf [options]
Environment variables
FZF_DEFAULT_COMMAND Default command to use when input is tty
- FZF_DEFAULT_OPTS Defaults options. (e.g. '--reverse --inline-info')
+ FZF_DEFAULT_OPTS Default options (e.g. '--reverse --inline-info')
`