Hello,
I’m trying to add a functionality which would allow me to just press one hotkey:
- the selection would expand around the word
- that word would be piped into FZF
- FZF would ask me about what type of a tag is that word
- a typical list of that type of tags would show up (via FZF)
This is the attempt:
map global normal <c-y> '<a-a>w<ret>:fzf -fzf-impl "fzf -i -q ${kak_selection}"'
Obviously it’s far from what I’m trying to get:
- I don’t know how to properly start the
fzf-mode
with the-q
argument - I don’t know how to insert the current selection into this command
Help would be appreciated, thanks.