summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorpinicarus <pinicarus@protonmail.com>2020-11-01 11:45:36 +0100
committerpinicarus <pinicarus@protonmail.com>2020-11-01 11:45:36 +0100
commitdb96b007209f7ea0983c58cb1d18771f5a45a543 (patch)
tree092fb643e078359c8e8356c41fc7cb50ceb355e7 /doc
parentd7557ef9be6ce680e811e31e217db5624d9e2897 (diff)
parent62f2c6d3261af41ef01db6868724881fd6eebccc (diff)
downloadale-db96b007209f7ea0983c58cb1d18771f5a45a543.zip
Merge branch 'custom-erlc-executable'
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-erlang.txt8
-rw-r--r--doc/ale-supported-languages-and-tools.txt2
-rw-r--r--doc/ale.txt8
3 files changed, 16 insertions, 2 deletions
diff --git a/doc/ale-erlang.txt b/doc/ale-erlang.txt
index 66b8831c..e3cf230e 100644
--- a/doc/ale-erlang.txt
+++ b/doc/ale-erlang.txt
@@ -42,6 +42,14 @@ g:ale_erlang_dialyzer_rebar3_profile *g:ale_erlang_dialyzer_rebar3_profile*
-------------------------------------------------------------------------------
erlc *ale-erlang-erlc*
+g:ale_erlang_erlc_executable *g:ale_erlang_erlc_executable*
+ *b:ale_erlang_erlc_executable*
+ Type: |String|
+ Default: `'erlc'`
+
+ This variable can be changed to specify the erlc executable.
+
+
g:ale_erlang_erlc_options *g:ale_erlang_erlc_options*
*b:ale_erlang_erlc_options*
Type: |String|
diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt
index c6bcf421..4f3afd85 100644
--- a/doc/ale-supported-languages-and-tools.txt
+++ b/doc/ale-supported-languages-and-tools.txt
@@ -455,9 +455,9 @@ Notes:
* SugarSS
* `stylelint`
* Swift
+ * Apple `swift-format`
* `sourcekit-lsp`
* `swiftformat`
- * `swift-format`
* `swiftlint`
* Tcl
* `nagelfar`!!
diff --git a/doc/ale.txt b/doc/ale.txt
index 6ef137c1..eb8f0275 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -154,7 +154,7 @@ Any existing problems will be kept.
3.1 Linting On Other Machines *ale-lint-other-machines*
ALE offers support for running linters or fixers on files you are editing
-locally on other machines, so long as the other machine has access the file
+locally on other machines, so long as the other machine has access to the file
you are editing. This could be a linter or fixer run inside of a Docker image,
running in a virtual machine, running on a remote server, etc.
@@ -3099,6 +3099,12 @@ ALERename *ALERename*
The symbol where the cursor is resting will be the symbol renamed, and a
prompt will open to request a new name.
+ ALE will refuse to complete a rename operation if there are files to modify
+ which have not yet been saved in Vim. If the command is run with a bang
+ (`:ALERename!`), all warnings will be suppressed, and files that are still
+ open in Vim and not saved will be ignored and left in a state where symbols
+ in those files will not be updated.
+
ALERepeatSelection *ALERepeatSelection*