From 99aebcafac22607273f06442b3613e11774d8444 Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Sat, 22 Oct 2016 08:29:30 -0500 Subject: [PATCH] Docs! --- doc/ale.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/ale.txt b/doc/ale.txt index f166848..4253159 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -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.