summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-06-20 00:58:51 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-06-20 00:58:51 +0900
commit27d1f5e0a8c73bc79694157f132247c2e69c2a71 (patch)
treebea5740b79c244608397643ecf807b70949cc0f0
parent540632bb9e1169380b594e71b3c70f2d1567aae6 (diff)
Fix typos
-rw-r--r--CHANGELOG.md2
-rw-r--r--man/man1/fzf.16
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dbabd849..337d0268 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@ CHANGELOG
0.54.0
------
-- Added `--info-command` option for customizing info text
+- Added `--info-command` option for customizing the info line
```sh
# Prepend the current cursor position in yellow
fzf --info-command='echo -e "\x1b[33;1m$FZF_POS\x1b[m/$FZF_INFO 💛"'
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index e98210b6..eb9882e2 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -454,9 +454,9 @@ Determines the display style of the finder info. (e.g. match counter, loading in
.TP
.BI "--info-command=" "COMMAND"
-Command to generate the finder info. The command runs synchronously and block
-the UI until completion, so make sure that it's fast. ANSI color codes are
-supported. \fB$FZF_INFO\f$ variable is set to the original info text.
+Command to generate the finder info line. The command runs synchronously and
+blocks the UI until completion, so make sure that it's fast. ANSI color codes
+are supported. \fB$FZF_INFO\fR variable is set to the original info text.
e.g.
\fB# Prepend the current cursor position in yellow