Fix typos

This commit is contained in:
Junegunn Choi 2024-06-20 00:58:51 +09:00
parent 540632bb9e
commit 27d1f5e0a8
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
2 changed files with 4 additions and 4 deletions

View File

@ -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 💛"'

View File

@ -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