diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-25 23:52:13 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-25 23:52:13 +0100 |
commit | 5d5ba2a7802b67515dd27df80d76b3f265c07624 (patch) | |
tree | ab8224cdc09120b4e4456e9175bc3c8a038fba1d /autoload | |
parent | 45c2d6b580e8e4bfe73412667268c48a3034caf5 (diff) | |
download | ale-5d5ba2a7802b67515dd27df80d76b3f265c07624.zip |
#427 Allow linters and aliases to be configured in buffer local variables
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale.vim | 12 | ||||
-rw-r--r-- | autoload/ale/linter.vim | 59 |
2 files changed, 44 insertions, 27 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim index 80ef3eed..b911c215 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -3,6 +3,7 @@ " Manages execution of linters when requested by autocommands let s:lint_timer = -1 +let s:queued_buffer_number = -1 let s:should_lint_file_for_buffer = {} " A function for checking various conditions whereby ALE just shouldn't @@ -50,6 +51,7 @@ function! ale#Queue(delay, ...) abort endif if a:delay > 0 + let s:queued_buffer_number = bufnr('%') let s:lint_timer = timer_start(a:delay, function('ale#Lint')) else call ale#Lint() @@ -61,8 +63,14 @@ function! ale#Lint(...) abort return endif - let l:buffer = bufnr('%') - let l:linters = ale#linter#Get(&filetype) + " Get the buffer number linting was queued for. + " or else take the current one. + let l:buffer = len(a:0) > 1 && a:1 == s:lint_timer + \ ? s:queued_buffer_number + \ : bufnr('%') + + " Use the filetype from the buffer + let l:linters = ale#linter#Get(getbufvar(l:buffer, '&filetype')) let l:should_lint_file = 0 " Check if we previously requested checking the file. diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 8a332491..05156214 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -199,18 +199,26 @@ function! ale#linter#GetAll(filetypes) abort return l:combined_linters endfunction -function! ale#linter#ResolveFiletype(original_filetype) abort - " Try and get an aliased file type either from the user's Dictionary, or - " our default Dictionary, otherwise use the filetype as-is. - let l:filetype = get( +function! s:GetAliasedFiletype(original_filetype) abort + " Check for aliased filetypes first in a buffer variable, + " then the global variable, + " then in the default mapping, + " otherwise use the original filetype. + for l:dict in [ + \ get(b:, 'ale_linter_aliases', {}), \ g:ale_linter_aliases, - \ a:original_filetype, - \ get( - \ s:default_ale_linter_aliases, - \ a:original_filetype, - \ a:original_filetype - \ ) - \) + \ s:default_ale_linter_aliases, + \] + if has_key(l:dict, a:original_filetype) + return l:dict[a:original_filetype] + endif + endfor + + return a:original_filetype +endfunction + +function! ale#linter#ResolveFiletype(original_filetype) abort + let l:filetype = s:GetAliasedFiletype(a:original_filetype) if type(l:filetype) != type([]) return [l:filetype] @@ -219,26 +227,27 @@ function! ale#linter#ResolveFiletype(original_filetype) abort return l:filetype endfunction +function! s:GetLinterNames(original_filetype) abort + for l:dict in [ + \ get(b:, 'ale_linters', {}), + \ g:ale_linters, + \ s:default_ale_linters, + \] + if has_key(l:dict, a:original_filetype) + return l:dict[a:original_filetype] + endif + endfor + + return 'all' +endfunction + function! ale#linter#Get(original_filetypes) abort let l:combined_linters = [] " Handle dot-seperated filetypes. for l:original_filetype in split(a:original_filetypes, '\.') let l:filetype = ale#linter#ResolveFiletype(l:original_filetype) - - " Try and get a list of linters to run, using the original file type, - " not the aliased filetype. We have some linters to limit by default, - " and users may define their own list of linters to run. - let l:linter_names = get( - \ g:ale_linters, - \ l:original_filetype, - \ get( - \ s:default_ale_linters, - \ l:original_filetype, - \ 'all' - \ ) - \) - + let l:linter_names = s:GetLinterNames(l:original_filetype) let l:all_linters = ale#linter#GetAll(l:filetype) let l:filetype_linters = [] |