mirror of
https://github.com/junegunn/fzf.git
synced 2026-06-14 03:29:56 +08:00
b27dc3eb17
Previously a command like `echo a && echo b` would get transformed into `echo a && echo b | fzf`, which only pipes the output of the second command. Adding parentheses around the source command avoids this issue, and works on both Unix and Windows.