mirror of
https://github.com/junegunn/fzf.git
synced 2026-06-23 09:28:27 +08:00
eb487035f1
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