m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 15:23:48 -05:00

[nvim] Fix floating window requirements (#2089)

Vim 8.1.2371
05ad5ff0ab

Nvim 0.4.0
9a1675b065
This commit is contained in:
Jan Edmund Lazo
2020-06-20 21:34:43 -04:00
committed by GitHub
parent 07a03b3e73
commit 3e36f2b0ac

View File

@@ -652,8 +652,8 @@ function! s:split(dict)
try
if s:present(a:dict, 'window')
if type(a:dict.window) == type({})
if !has('nvim') && !has('patch-8.2.191')
throw 'Vim 8.2.191 or later is required for pop-up window'
if !(has('nvim') ? has('nvim-0.4') : has('popupwin') && has('patch-8.2.191'))
throw 'Nvim 0.4+ or Vim 8.2.191+ with popupwin feature is required for pop-up window'
end
call s:popup(a:dict.window)
let is_popup = 1