Clarify debounced wait feedback in man page
CodeQL / Analyze (go) (push) Has been cancelled
build / build (push) Has been cancelled
Test fzf on macOS / build (push) Has been cancelled

Dimming, cursor hiding, and (..) appear only after the debounce delay,
not immediately. Only input blocking is immediate.
This commit is contained in:
Junegunn Choi
2026-07-02 16:06:35 +09:00
parent c6d4a13cb4
commit ab57b9b4e6
+6 -3
View File
@@ -2313,9 +2313,12 @@ In this example, \fBsearch(foo)\fR starts an asynchronous search,
\fBwait\fR blocks until the search completes, and \fBbest\fR then moves the
cursor to the best match in the complete result set.
While waiting, the UI is dimmed and user input is ignored (except for Escape or
Ctrl-C to cancel the wait and discard pending actions). The info line shows
\fB(..)\fR to indicate that fzf is waiting for the search to complete.
While waiting, user input is ignored (except for Escape or Ctrl-C to cancel the
wait and discard the pending actions).
If the search takes long enough, fzf indicates that it is waiting by dimming the
input, hiding the cursor, and showing \fB(..)\fR on the info line. This visual
feedback is debounced so that quick searches do not cause flickering.
.SS PREVIEW BINDING