Close #4396 - Enable virtualtext by default

Wherever it's supported, enable virtualtext by default.
This commit is contained in:
w0rp
2022-12-25 19:43:29 +00:00
parent 300ea232de
commit 9f2a000237
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ let g:ale_echo_cursor = get(g:, 'ale_echo_cursor', 1)
let g:ale_cursor_detail = get(g:, 'ale_cursor_detail', 0)
" This flag can be changed to disable/enable virtual text.
let g:ale_virtualtext_cursor = get(g:, 'ale_virtualtext_cursor', 'disabled')
let g:ale_virtualtext_cursor = get(g:, 'ale_virtualtext_cursor', (has('nvim-0.3.2') || has('patch-9.0.0297') && has('textprop') && has('popupwin')) ? 'all' : 'disabled')
" This flag can be set to 1 to enable LSP hover messages at the cursor.
let g:ale_hover_cursor = get(g:, 'ale_hover_cursor', 1)