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 6b7aabd commit 396d248Copy full SHA for 396d248
autoload/lsp/ui/vim/output.vim
@@ -102,6 +102,7 @@ function! s:get_float_positioning(height, width) abort
102
let l:height = min([l:height, max([&lines - &cmdheight - l:row, &previewheight])])
103
104
let l:style = 'minimal'
105
+ let l:border = 'double'
106
" Positioning is not window but screen relative
107
let l:opts = {
108
\ 'relative': 'editor',
@@ -110,6 +111,7 @@ function! s:get_float_positioning(height, width) abort
110
111
\ 'width': l:width,
112
\ 'height': l:height,
113
\ 'style': l:style,
114
+ \ 'border': l:border,
115
\ }
116
return l:opts
117
endfunction
0 commit comments