summaryrefslogtreecommitdiff
path: root/doc/ale.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ale.txt')
-rw-r--r--doc/ale.txt14
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index fae91009..d202a264 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -62,6 +62,7 @@ CONTENTS *ale-contents*
glsl..................................|ale-glsl-options|
glslang.............................|ale-glsl-glslang|
go....................................|ale-go-options|
+ gofmt...............................|ale-go-gofmt|
gometalinter........................|ale-go-gometalinter|
graphql...............................|ale-graphql-options|
gqlint..............................|ale-graphql-gqlint|
@@ -94,6 +95,8 @@ CONTENTS *ale-contents*
kotlin................................|ale-kotlin-options|
kotlinc.............................|ale-kotlin-kotlinc|
ktlint..............................|ale-kotlin-ktlint|
+ llvm..................................|ale-llvm-options|
+ llc.................................|ale-llvm-llc|
lua...................................|ale-lua-options|
luacheck............................|ale-lua-luacheck|
objc..................................|ale-objc-options|
@@ -254,6 +257,7 @@ Notes:
* JSON: `jsonlint`, `prettier`
* Kotlin: `kotlinc`, `ktlint`
* LaTeX (tex): `chktex`, `lacheck`, `proselint`
+* LLVM: `llc`
* Lua: `luacheck`
* Markdown: `mdl`, `proselint`, `vale`
* MATLAB: `mlint`
@@ -608,7 +612,7 @@ g:ale_fixers *g:ale_fixers*
A mapping from filetypes to |List| values for functions for fixing errors.
See |ale-fix| for more information.
- This variable can be overriden with variables in each buffer.
+ This variable can be overridden with variables in each buffer.
g:ale_fix_on_save *g:ale_fix_on_save*
@@ -1508,7 +1512,7 @@ ale#linter#Define(filetype, linter) *ale#linter#Define()*
the end of the file will be moved to the end.
`col` - The column number is optional and will
default to `0`. Any strings will be automatically
- coverted to number using `str2nr()`.
+ converted to number using `str2nr()`.
`end_col` - An optional end column number.
This key can be set to specify the column problems
end on, for improved highlighting.
@@ -1659,7 +1663,7 @@ ale#linter#Define(filetype, linter) *ale#linter#Define()*
`project_callback` and `language_callback` arguments
must also be defined.
- LSP linters handle diagonstics automatically, so
+ LSP linters handle diagnostics automatically, so
the `callback` argument must not be defined.
`project_callback` A |String| or |Funcref| for a callback function
@@ -1748,12 +1752,12 @@ 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:
+ Filetypes may be dot-separated 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
+ are applied after dot-separated filetypes are broken up into their
components.