[WIP] add codeaction sign support (#1085)

* add codeaction sign support

* add hl LspCodeActionText

* add docs

* add support for multiple servers

* only set signs if buffer exists
This commit is contained in:
Prabir Shrestha
2021-03-06 10:56:44 -08:00
committed by GitHub
parent fea03524cb
commit eb237a2ced
5 changed files with 166 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ function! lsp#enable() abort
call lsp#ui#vim#completion#_setup()
call lsp#internal#document_highlight#_enable()
call lsp#internal#diagnostics#_enable()
call lsp#internal#document_code_action#signs#_enable()
call lsp#internal#show_message_request#_enable()
call lsp#internal#work_done_progress#_enable()
call lsp#internal#completion#documentation#_enable()
@@ -75,6 +76,7 @@ function! lsp#disable() abort
call lsp#ui#vim#completion#_disable()
call lsp#internal#document_highlight#_disable()
call lsp#internal#diagnostics#_disable()
call lsp#internal#document_code_action#signs#_disable()
call lsp#internal#show_message_request#_disable()
call lsp#internal#work_done_progress#_disable()
call lsp#internal#completion#documentation#_disable()