mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/doc/ale-tex.txt

96 lines
3.4 KiB
Plaintext
Raw Normal View History

===============================================================================
ALE TeX Integration *ale-tex-options*
===============================================================================
chktex *ale-tex-chktex*
g:ale_tex_chktex_executable *g:ale_tex_chktex_executable*
*b:ale_tex_chktex_executable*
Type: |String|
Default: `'chktex'`
This variable can be changed to change the path to chktex.
g:ale_tex_chktex_options *g:ale_tex_chktex_options*
*b:ale_tex_chktex_options*
Type: |String|
Default: `'-I'`
This variable can be changed to modify flags given to chktex.
2022-08-08 09:45:56 -04:00
===============================================================================
cspell *ale-tex-cspell*
See |ale-cspell-options|
===============================================================================
lacheck *ale-tex-lacheck*
g:ale_lacheck_executable *g:ale_lacheck_executable*
*b:ale_lacheck_executable*
Type: |String|
Default: '`lacheck`'
This variable can be changed to change the path to lacheck.
2019-05-17 10:09:13 -04:00
===============================================================================
2022-08-08 09:45:56 -04:00
latexindent *ale-tex-latexindent*
2019-05-17 10:09:13 -04:00
2022-08-08 09:45:56 -04:00
g:ale_tex_latexindent_executable *g:ale_tex_latexindent_executable*
*b:ale_tex_latexindent_executable*
2019-05-17 10:09:13 -04:00
Type: |String|
Default: `'latexindent'`
This variable can be changed to change the path to latexindent.
g:ale_tex_latexindent_options *g:ale_tex_latexindent_options*
*b:ale_tex_latexindent_options*
Type: |String|
Default: `''`
This variable can be changed to modify flags given to latexindent.
2019-08-22 11:36:17 -04:00
===============================================================================
2022-08-08 09:45:56 -04:00
texlab *ale-tex-texlab*
2019-08-22 11:36:17 -04:00
2022-08-08 09:45:56 -04:00
g:ale_tex_texlab_executable *g:ale_tex_texlab_executable*
*b:ale_tex_texlab_executable*
2019-08-22 11:36:17 -04:00
Type: |String|
Default: `'texlab'`
This variable can be changed to change the path to texlab.
2022-08-08 09:45:56 -04:00
g:ale_tex_texlab_options *g:ale_tex_texlab_options*
*b:ale_tex_texlab_options*
2019-08-22 11:36:17 -04:00
Type: |String|
Default: `''`
2022-08-08 09:45:56 -04:00
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
2019-08-22 11:36:17 -04:00
2022-08-08 09:45:56 -04:00
For example to set build onSave initialization setting:
2019-08-22 11:36:17 -04:00
2022-08-08 09:45:56 -04:00
>
let g:ale_tex_texlab_config = {"build":{"onSave":v:true}}
<
2019-08-22 11:36:17 -04:00
===============================================================================
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: