mirror of
https://github.com/junegunn/fzf
synced 2026-07-24 17:13:18 +00:00
c5a5f4956c
The 'wait' action blocks subsequent action execution until the current search completes. This is essential for chaining actions after query-changing actions (e.g. transform-search(...)+wait+best), ensuring motion actions operate on complete results rather than stale data. - Blocks all user input except ESC/CTRL-C while waiting - Shows visual feedback: dimmed query, (..) indicator, hidden cursor - Clears pending actions if user cancels with ESC/CTRL-C Closes: #4825