blob: ca0a0e26fa0f9e78a2f5334c4dd6a1892b81f8c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
===============================================================================
ALE TeX Integration *ale-tex-options*
===============================================================================
chktex *ale-tex-chktex*
*ale-options.tex_chktex_executable*
*g:ale_tex_chktex_executable*
*b:ale_tex_chktex_executable*
tex_chktex_executable
g:ale_tex_chktex_executable
Type: |String|
Default: `'chktex'`
This variable can be changed to change the path to chktex.
*ale-options.tex_chktex_options*
*g:ale_tex_chktex_options*
*b:ale_tex_chktex_options*
tex_chktex_options
g:ale_tex_chktex_options
Type: |String|
Default: `'-I'`
This variable can be changed to modify flags given to chktex.
===============================================================================
cspell *ale-tex-cspell*
See |ale-cspell-options|
===============================================================================
lacheck *ale-tex-lacheck*
*ale-options.lacheck_executable*
*g:ale_lacheck_executable*
*b:ale_lacheck_executable*
lacheck_executable
g:ale_lacheck_executable
Type: |String|
Default: `'lacheck'`
This variable can be changed to change the path to lacheck.
===============================================================================
latexindent *ale-tex-latexindent*
*ale-options.tex_latexindent_executable*
*g:ale_tex_latexindent_executable*
*b:ale_tex_latexindent_executable*
tex_latexindent_executable
g:ale_tex_latexindent_executable
Type: |String|
Default: `'latexindent'`
This variable can be changed to change the path to latexindent.
*ale-options.tex_latexindent_options*
*g:ale_tex_latexindent_options*
*b:ale_tex_latexindent_options*
tex_latexindent_options
g:ale_tex_latexindent_options
Type: |String|
Default: `''`
This variable can be changed to modify flags given to latexindent.
===============================================================================
tex-fmt *ale-tex-tex-fmt*
*ale-options.tex_tex_fmt_executable*
*g:ale_tex_tex_fmt_executable*
*b:ale_tex_tex_fmt_executable*
tex_tex_fmt_executable
g:ale_tex_tex_fmt_executable
Type: |String|
Default: `'tex-fmt'`
See |ale-integrations-local-executables|.
*ale-options.tex_tex_fmt_options*
*g:ale_tex_tex_fmt_options*
*b:ale_tex_tex_fmt_options*
tex_tex_fmt_options
g:ale_tex_tex_fmt_options
Type: |String|
Default: `''`
This variable can be changed to modify flags given to tex-fmt.
===============================================================================
texlab *ale-tex-texlab*
*ale-options.tex_texlab_executable*
*g:ale_tex_texlab_executable*
*b:ale_tex_texlab_executable*
tex_texlab_executable
g:ale_tex_texlab_executable
Type: |String|
Default: `'texlab'`
This variable can be changed to change the path to texlab.
*ale-options.tex_texlab_options*
*g:ale_tex_texlab_options*
*b:ale_tex_texlab_options*
tex_texlab_options
g:ale_tex_texlab_options
Type: |String|
Default: `''`
This variable can be changed to modify flags given to texlab command.
*ale-options.tex_texlab_config*
*g:ale_tex_texlab_config*
*b:ale_tex_texlab_config*
tex_texlab_config
g: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}}
<
===============================================================================
redpen *ale-tex-redpen*
See |ale-redpen-options|
===============================================================================
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|