Skip to content

Commit

Permalink
Close dense-analysis#4396 - Enable virtualtext by default
Browse files Browse the repository at this point in the history
Wherever it's supported, enable virtualtext by default.
  • Loading branch information
w0rp authored and mnikulin committed Nov 12, 2023
1 parent 3d68043 commit 6e47cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/ale.txt
Expand Up @@ -2290,7 +2290,7 @@ g:ale_use_global_executables *g:ale_use_global_executables*
g:ale_virtualtext_cursor *g:ale_virtualtext_cursor*

Type: |Number|
Default: `'disabled'`
Default: `'all'` (if supported, otherwise `'disabled'`)

This option controls how ALE will display problems using |virtual-text|.
The following values can be used.
Expand Down
2 changes: 1 addition & 1 deletion plugin/ale.vim
Expand Up @@ -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)
Expand Down

0 comments on commit 6e47cf1

Please sign in to comment.