summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-08-13 11:38:43 +0100
committerw0rp <devw0rp@gmail.com>2018-08-13 11:38:43 +0100
commit5323f000aa638689cf8d131ad6535fb2f8f699b0 (patch)
treec8b570c84070ffd7bc04fc6ee8133b1be556f419 /README.md
parent04b25c8ee22c144095a643b39f472ef42fc1a71a (diff)
downloadale-5323f000aa638689cf8d131ad6535fb2f8f699b0.zip
Explain * for fixers in the README better
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index 07fe8ad5..e1222157 100644
--- a/README.md
+++ b/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
-after ALE has been loaded. A `*` in place of the filetype will apply the
-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
-`g:ale_fixers` is not supported.
+after ALE has been loaded.
+
+A `*` in place of the filetype will apply a List of fixers to all files which
+do not match some filetype in the Dictionary.
+
+Note that using a plain List for `g:ale_fixers` is not supported.
```vim
" In ~/.vim/vimrc, or somewhere similar.