Replies: 1 comment
-
call fzf#run(fzf#wrap({'options': '--multi', 'source': 'cat list.txt', 'sinklist': { list -> append(line('.'), list) }}))
|
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
-
I have a config file (yml-like) that I edit in vim. One section of the config file takes items from a huge list of items (thousands).
I would like to insert the multi-select list from fzf into the current position in vim.
similar to a
:r! cat list.txt | grep -e "foo"
What I have tried:
vi file
:call fzf#run({'source': 'cat list.txt', 'sinklist': 'i'})
Beta Was this translation helpful? Give feedback.
All reactions