Skip to content
Snippets Groups Projects
Unverified Commit e825b07e authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[neovim] Allow running FZF in multiple windows

Close #1023
parent 71fdb99a
No related branches found
No related tags found
No related merge requests found
......@@ -340,13 +340,6 @@ try
set shell=sh
endif
if has('nvim')
let running = filter(range(1, bufnr('$')), "bufname(v:val) =~# ';#FZF'")
if len(running)
call s:warn('FZF is already running (in buffer '.join(running, ', ').')!')
return []
endif
endif
let dict = exists('a:1') ? s:upgrade(a:1) : {}
let temps = { 'result': s:fzf_tempname() }
let optstr = s:evaluate_opts(get(dict, 'options', ''))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment