1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:30:05 +08:00

fix(defx): fix s:win_count() function

This commit is contained in:
wsdjeg 2022-04-11 12:33:51 +08:00
parent 3e9b813034
commit 465d9ffc37

View File

@ -69,8 +69,6 @@ augroup END
function! s:win_count() abort
if has('nvim') && exists('*nvim_win_get_config')
return len(filter(range(1, winnr('$')), '!has_key(nvim_win_get_config(win_getid(v:val)), "col")'))
elseif exists('*popup_getoptions')
return len(filter(range(1, winnr('$')), '!has_key(popup_getoptions(win_getid(v:val)), "col")'))
else
return winnr('$')
endif