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 4c14bd4 commit 79e36baCopy full SHA for 79e36ba
autoload/LanguageClient.vim
@@ -263,7 +263,8 @@ function! s:GetVar(...) abort
263
endfunction
264
265
function! s:ShouldUseFloatWindow() abort
266
- return s:FLOAT_WINDOW_AVAILABLE && get(g:, 'LanguageClient_useFloatingHover', 1)
+ let use = s:GetVar('LanguageClient_useFloatingHover')
267
+ return s:FLOAT_WINDOW_AVAILABLE && (use || use is v:null)
268
269
270
function! s:CloseFloatingHoverOnCursorMove(win_id, opened) abort
0 commit comments