summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/ale/lsp.vim4
-rw-r--r--test/lsp/test_lsp_startup.vader4
2 files changed, 4 insertions, 4 deletions
diff --git a/autoload/ale/lsp.vim b/autoload/ale/lsp.vim
index daaed6fa..0519c798 100644
--- a/autoload/ale/lsp.vim
+++ b/autoload/ale/lsp.vim
@@ -424,7 +424,7 @@ function! s:SendInitMessage(conn) abort
\ 'completionItem': {
\ 'snippetSupport': v:false,
\ 'commitCharactersSupport': v:false,
- \ 'documentationFormat': ['plaintext'],
+ \ 'documentationFormat': ['plaintext', 'markdown'],
\ 'deprecatedSupport': v:false,
\ 'preselectSupport': v:false,
\ },
@@ -432,7 +432,7 @@ function! s:SendInitMessage(conn) abort
\ },
\ 'hover': {
\ 'dynamicRegistration': v:false,
- \ 'contentFormat': ['plaintext'],
+ \ 'contentFormat': ['plaintext', 'markdown'],
\ },
\ 'references': {
\ 'dynamicRegistration': v:false,
diff --git a/test/lsp/test_lsp_startup.vader b/test/lsp/test_lsp_startup.vader
index 7417dbcb..5dd6ee9a 100644
--- a/test/lsp/test_lsp_startup.vader
+++ b/test/lsp/test_lsp_startup.vader
@@ -165,7 +165,7 @@ Before:
\ 'completionItem': {
\ 'snippetSupport': v:false,
\ 'commitCharactersSupport': v:false,
- \ 'documentationFormat': ['plaintext'],
+ \ 'documentationFormat': ['plaintext', 'markdown'],
\ 'deprecatedSupport': v:false,
\ 'preselectSupport': v:false,
\ },
@@ -173,7 +173,7 @@ Before:
\ },
\ 'hover': {
\ 'dynamicRegistration': v:false,
- \ 'contentFormat': ['plaintext'],
+ \ 'contentFormat': ['plaintext', 'markdown'],
\ },
\ 'references': {
\ 'dynamicRegistration': v:false,