summaryrefslogtreecommitdiff
path: root/autoload/ale.vim
diff options
context:
space:
mode:
authorrhysd <lin90162@yahoo.co.jp>2019-03-30 13:53:18 +0900
committerrhysd <lin90162@yahoo.co.jp>2019-03-30 15:29:17 +0900
commit6a29641872f78c3f565418f3f754070a4b1ebe1e (patch)
tree15ac8103e48c5e4dd53f6acbfbe5c11339f018c3 /autoload/ale.vim
parent89273b65b8de9d3d428e7b1f5c0c347938f5a863 (diff)
downloadale-6a29641872f78c3f565418f3f754070a4b1ebe1e.zip
Add g:ale_disable_lsp and b:ale_disable_lsp to disable linters powered by LSP
Diffstat (limited to 'autoload/ale.vim')
-rw-r--r--autoload/ale.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim
index 5aa5fbfc..bcb89095 100644
--- a/autoload/ale.vim
+++ b/autoload/ale.vim
@@ -8,6 +8,7 @@ let g:ale_echo_msg_info_str = get(g:, 'ale_echo_msg_info_str', 'Info')
let g:ale_echo_msg_warning_str = get(g:, 'ale_echo_msg_warning_str', 'Warning')
" Ignoring linters, for disabling some, or ignoring LSP diagnostics.
let g:ale_linters_ignore = get(g:, 'ale_linters_ignore', {})
+let g:ale_disable_lsp = get(g:, 'ale_disable_lsp', 0)
let s:lint_timer = -1
let s:getcmdwintype_exists = exists('*getcmdwintype')
@@ -90,8 +91,9 @@ function! s:Lint(buffer, should_lint_file, timer_id) abort
" Apply ignore lists for linters only if needed.
let l:ignore_config = ale#Var(a:buffer, 'linters_ignore')
+ let l:disable_lsp = ale#Var(a:buffer, 'disable_lsp')
let l:linters = !empty(l:ignore_config)
- \ ? ale#engine#ignore#Exclude(l:filetype, l:linters, l:ignore_config)
+ \ ? ale#engine#ignore#Exclude(l:filetype, l:linters, l:ignore_config, l:disable_lsp)
\ : l:linters
" Tell other sources that they can start checking the buffer now.