From: indelog <39343976+indelog@users.noreply.github.com> Date: Tue, 16 Nov 2021 09:06:16 +0000 (+0100) Subject: Merge branch 'main' into indelog_hover_preview X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=700fd3f4795c81481052ec300d0e113d9a256d24;p=vim-lsp.git Merge branch 'main' into indelog_hover_preview --- 700fd3f4795c81481052ec300d0e113d9a256d24 diff --cc plugin/lsp.vim index f7021fe,8683e63..0f324c4 --- a/plugin/lsp.vim +++ b/plugin/lsp.vim @@@ -5,20 -5,6 +5,21 @@@ if v:version < 802 || !has('patch-8.2.2 finish endif ++ +" Perform completion in insert mode automatically. Otherwise use +" omni-complete. +if !exists('g:LSP_24x7_Complete') + let g:LSP_24x7_Complete = v:true +endif + +if !exists('g:LSP_Show_Signature') + let g:LSP_Show_Signature = v:true +endif + +if !exists('g:LSP_Hover_In_Preview') + let g:LSP_Hover_In_Preview = v:false +endif + augroup LSPAutoCmds au! autocmd BufNewFile,BufReadPost *