Replies: 2 comments
-
No, as of 2024 this has to be done with a separate filter. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is more of a general shell scripting question rather than an fzf question. You want to make echo print each argument on a separate line. You can use printf '%s\n' "plan" "seed" "up" "init" | fzf |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I really enjoy
fzf
, I use it all day every day :) Thanks for the awesome tool.I was wondering if there is a cleaner way to achieve the following without using
tr ' ' '\n'
?action=$(echo "plan" "seed" "up" "init" | tr ' ' '\n' | fzf)
Beta Was this translation helpful? Give feedback.
All reactions