summaryrefslogtreecommitdiff
path: root/doc/ale-tex.txt
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-01-05 22:19:32 +0900
committerGitHub <noreply@github.com>2022-01-05 22:19:32 +0900
commit7b8e711877449478796306be9124c1fdd690b987 (patch)
tree32663ce0a1db0d0f8561374385af65c999847a54 /doc/ale-tex.txt
parent11a90ad0ff0893118cd0b09de914c53f5683eeef (diff)
downloadale-7b8e711877449478796306be9124c1fdd690b987.zip
Fix 4025 - Allow to configure texlab LSP settings (#4027)
* Fix 4025 - Allow to configure texlab LSP settings * Fix ale_tex_texlab_config type in help
Diffstat (limited to 'doc/ale-tex.txt')
-rw-r--r--doc/ale-tex.txt17
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/ale-tex.txt b/doc/ale-tex.txt
index d5ef4783..147aacc4 100644
--- a/doc/ale-tex.txt
+++ b/doc/ale-tex.txt
@@ -73,8 +73,23 @@ g:ale_tex_texlab_options *g:ale_tex_texlab_options*
Type: |String|
Default: `''`
- This variable can be changed to modify flags given to texlab.
+ This variable can be changed to modify flags given to texlab command.
+g:ale_tex_texlab_config *g:ale_tex_texlab_config*
+ *b:ale_tex_texlab_config*
+ Type: |Dictionary|
+ Default: `{}`
+
+ Dictionary containing LSP configuration settings used to initialize texlab
+ language server. Refer to texlab documentation for possible settings:
+
+ https://github.com/latex-lsp/texlab/blob/master/docs/options.md
+
+ For example to set build onSave initialization setting:
+
+>
+ let g:ale_tex_texlab_config = {"build":{"onSave":v:true}}
+<
===============================================================================
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: