Copy selected items to clipboard #4187
-
I'm looking to create a binding (e.g.
With
It is very typical for strings to contain spaces, so it makes it impossible to delimit the concatenated items. How to get back a list of selected items as line-separated? Would a feature request to use a custom delimiter be reasonable and best approach? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Combine the
# macOS copy/paste commands
seq 4 | fzf --multi --bind 'result:select-all+become:cat {+f} | pbcopy'
pbpaste
1
2
3
4 EDIT1: add |
Beta Was this translation helpful? Give feedback.
Combine the
f
and+
flag.{}
{n}
{q}
+
f
s
EDIT1: add
--multi
flag