We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cbb423 commit 3b96fc8Copy full SHA for 3b96fc8
autoload/lsp/ui/vim/output.vim
@@ -149,17 +149,7 @@ function! s:setcontent(lines, ft) abort
149
if s:use_vim_popup
150
" vim popup
151
call setbufline(winbufnr(s:winid), 1, a:lines)
152
- let l:lightline_toggle = v:false
153
- if exists('#lightline') && !has('nvim')
154
- " Lightline does not work in popups but does not recognize it yet.
155
- " It is ugly to have an check for an other plugin here, better fix lightline...
156
- let l:lightline_toggle = v:true
157
- call lightline#disable()
158
- endif
159
call win_execute(s:winid, 'setlocal filetype=' . a:ft . '.lsp-hover')
160
- if l:lightline_toggle
161
- call lightline#enable()
162
163
else
164
" nvim floating or preview
165
call setline(1, a:lines)
0 commit comments