From 8dc5305573ebb1e118bb28ae8a99d8f907908cc3 Mon Sep 17 00:00:00 2001 From: Ben Barbour Date: Mon, 25 May 2020 17:46:27 -0700 Subject: [PATCH] Aliases for 'fzf#run' & 'fzf#wrap' fns Copied from https://github.com/lotabout/skim.vim/pull/7, but moved to the requested file. I'm doing it since the author of #7 seems to have deleted thier account. Hoping to close https://github.com/autozimu/LanguageClient-neovim/issues/879 --- autoload/fzf.vim | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 autoload/fzf.vim diff --git a/autoload/fzf.vim b/autoload/fzf.vim new file mode 100644 index 0000000..b86c1f7 --- /dev/null +++ b/autoload/fzf.vim @@ -0,0 +1,8 @@ +" Glue functions for plugins calling fzf#run and/or fzf#wrap directly +function! fzf#wrap(...) + return call('skim#wrap', a:000) +endfunction + +function! fzf#run(...) abort + return call('skim#run', a:000) +endfunction