summaryrefslogtreecommitdiff
path: root/doc/ale.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ale.txt')
-rw-r--r--doc/ale.txt18
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index 5b411b58..189839cf 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -1260,7 +1260,6 @@ g:ale_floating_preview_popup_opts *g:ale_floating_preview_popup_opts*
let g:ale_floating_preview_popup_opts = 'g:CustomOpts'
<
-
g:ale_floating_window_border *g:ale_floating_window_border*
Type: |List|
@@ -1974,6 +1973,16 @@ g:ale_root *g:ale_root*
LSP linter, it will not run.
+g:ale_save_hidden *g:ale_save_hidden*
+
+ Type: |Number|
+ Default: `0`
+
+ When set to `1`, save buffers when 'hidden' is set when applying code
+ actions or rename operations, such as through |ALERename| or
+ |ALEOrganizeImports|.
+
+
g:ale_set_balloons *g:ale_set_balloons*
*b:ale_set_balloons*
@@ -3646,14 +3655,15 @@ ALERename *ALERename*
The symbol where the cursor is resting will be the symbol renamed, and a
prompt will open to request a new name.
- The rename operation will save all modified buffers when `set nohidden` is
- set, because that disables leaving unsaved buffers in the background. See
- `:help hidden` for more details.
+ The rename operation will not save modified buffers when 'hidden' is on
+ unless |g:ale_save_hidden| is `1`.
+
ALEFileRename *ALEFileRename*
Rename a file and fix imports using `tsserver`.
+
ALECodeAction *ALECodeAction*
Apply a code action via LSP servers or `tsserver`.