Skip to content

Commit

Permalink
Aliases for 'fzf#run' & 'fzf#wrap' fns
Browse files Browse the repository at this point in the history
Copied from skim-rs#7, but moved to
the requested file. I'm doing it since the author of skim-rs#7 seems to have
deleted thier account.

Hoping to close autozimu/LanguageClient-neovim#879
  • Loading branch information
benbarbour committed May 26, 2020
1 parent 4e9d9a3 commit 8dc5305
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions autoload/fzf.vim
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8dc5305

Please sign in to comment.