diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-04-20 21:38:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 21:38:11 +0100 |
commit | 63bbb38c0ce9237b17acbfc29f192a0656c62677 (patch) | |
tree | f8863f5ca1f2aee322cce78a755d3c57292959a2 /doc | |
parent | f9ba3d924fc445ceea6ab7a6700b95dd12d268ca (diff) | |
parent | 6f6d35c0bdc1abea8639e7b32e677513034bb1ee (diff) | |
download | ale-63bbb38c0ce9237b17acbfc29f192a0656c62677.zip |
Merge pull request #1510 from fenuks/issue-1471
Support passing fixers names to ALEFix as arguments
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index 0757101e..59313116 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -473,10 +473,12 @@ ftplugin files for different filetypes. =============================================================================== 4. Fixing Problems *ale-fix* -ALE can fix problems with files with the |ALEFix| command. When |ALEFix| is -run, the variable |g:ale_fixers| will be read for getting a |List| of commands -for filetypes, split on `.`, and the functions named in |g:ale_fixers| will be -executed for fixing the errors. +ALE can fix problems with files with the |ALEFix| command. |ALEFix| +accepts names of fixers to be applied as arguments. Alternatively, +when no arguments are provided, the variable |g:ale_fixers| will be +read for getting a |List| of commands for filetypes, split on `.`, and +the functions named in |g:ale_fixers| will be executed for fixing the +errors. The |ALEFixSuggest| command can be used to suggest tools that be used to fix problems for the current buffer. |