This commit is contained in:
Bjorn Neergaard 2016-10-22 08:29:30 -05:00
parent f49f615ef6
commit 99aebcafac
No known key found for this signature in database
GPG Key ID: D8F4DB0CE841305D
1 changed files with 8 additions and 1 deletions

View File

@ -130,7 +130,6 @@ g:ale_linter_aliases *g:ale_linter_aliases*
following values: >
{
\ 'javscript.jsx': 'javascript',
\ 'zsh': 'sh',
\ 'csh': 'sh',
\}
@ -616,6 +615,14 @@ ale#linter#Get(filetype) *ale#linter#Get()*
Return all of linters configured for a given filetype as a |List| of
|Dictionary| values in the format specified by |ale#linter#Define()|.
Filetypes may be dot-seperated to invoke linters for multiple filetypes:
for instance, the filetype `javascript.jsx` will return linters for both the
`javascript` and `jsx` filetype.
Aliases may be defined in as described in |g:ale_linter_aliases|. Aliases
are applied after dot-seperated filetypes are broken up into their
components.
ale#statusline#Status() *ale#statusline#Status()*
Return a formatted string that can be added to the statusline.