We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The function gulpVim#GetTasks() returns a string containing task names separated by \n if they exist, otherwise returns 0.
gulpVim#GetTasks()
\n
Most fuzzy finder plugins accept a list as a source, so split(gulpVim#GetTasks(), "\n") is the right way to get it.
split(gulpVim#GetTasks(), "\n")
A simple FzfGulp command:
FzfGulp
command! FzfGulp call fzf#run({ \ 'source': split(gulpVim#GetTasks()), \ 'sink': 'GulpExt' \ })