From 58d104d142e7614a5eb783d996d37a0d41ee0b6f Mon Sep 17 00:00:00 2001 From: Damien Radtke Date: Fri, 25 Oct 2019 14:57:00 +0000 Subject: [PATCH] Open Neovim floating windows with "minimal" style --- autoload/lsp/ui/vim/output.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/lsp/ui/vim/output.vim b/autoload/lsp/ui/vim/output.vim index 1ca200019..042b589aa 100644 --- a/autoload/lsp/ui/vim/output.vim +++ b/autoload/lsp/ui/vim/output.vim @@ -87,6 +87,7 @@ function! s:get_float_positioning(height, width) abort endif endif let l:col = col('.') + let l:style = 'minimal' " Positioning is not window but screen relative let l:opts = { \ 'relative': 'win', @@ -94,6 +95,7 @@ function! s:get_float_positioning(height, width) abort \ 'col': l:col, \ 'width': l:width, \ 'height': l:height, + \ 'style': l:style, \ } return l:opts endfunction