Explain * for fixers in the README better
This commit is contained in:
parent
04b25c8ee2
commit
5323f000aa
1 changed files with 6 additions and 4 deletions
10
README.md
10
README.md
|
@ -232,10 +232,12 @@ let b:ale_fixers = {'javascript': ['prettier', 'eslint']}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also configure your fixers from vimrc using `g:ale_fixers`, before or
|
You can also configure your fixers from vimrc using `g:ale_fixers`, before or
|
||||||
after ALE has been loaded. A `*` in place of the filetype will apply the
|
after ALE has been loaded.
|
||||||
corresponding list of fixers to all filetypes. If a subsequent specific filetype
|
|
||||||
match is found it will be used instead of `*`. Note that using a plain list for
|
A `*` in place of the filetype will apply a List of fixers to all files which
|
||||||
`g:ale_fixers` is not supported.
|
do not match some filetype in the Dictionary.
|
||||||
|
|
||||||
|
Note that using a plain List for `g:ale_fixers` is not supported.
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
" In ~/.vim/vimrc, or somewhere similar.
|
" In ~/.vim/vimrc, or somewhere similar.
|
||||||
|
|
Reference in a new issue