Skip to content

Commit 19e5b08

Browse files
dradtkethomasfaingnaert
authored andcommitted
Open Neovim floating windows with "minimal" style (#549)
1 parent 7168f29 commit 19e5b08

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

autoload/lsp/ui/vim/output.vim

+2
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,15 @@ function! s:get_float_positioning(height, width) abort
8787
endif
8888
endif
8989
let l:col = col('.')
90+
let l:style = 'minimal'
9091
" Positioning is not window but screen relative
9192
let l:opts = {
9293
\ 'relative': 'win',
9394
\ 'row': l:y,
9495
\ 'col': l:col,
9596
\ 'width': l:width,
9697
\ 'height': l:height,
98+
\ 'style': l:style,
9799
\ }
98100
return l:opts
99101
endfunction

0 commit comments

Comments
 (0)