]> git.madduck.net Git - etc/vim.git/blob - doc/ale-tex.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Squashed '.vim/bundle/ale/' content from commit 22185c4c
[etc/vim.git] / doc / ale-tex.txt
1 ===============================================================================
2 ALE TeX Integration                                           *ale-tex-options*
3
4
5 ===============================================================================
6 chktex                                                         *ale-tex-chktex*
7
8                                             *ale-options.tex_chktex_executable*
9                                                   *g:ale_tex_chktex_executable*
10                                                   *b:ale_tex_chktex_executable*
11 tex_chktex_executable
12 g:ale_tex_chktex_executable
13   Type: |String|
14   Default: `'chktex'`
15
16   This variable can be changed to change the path to chktex.
17
18                                                *ale-options.tex_chktex_options*
19                                                      *g:ale_tex_chktex_options*
20                                                      *b:ale_tex_chktex_options*
21 tex_chktex_options
22 g:ale_tex_chktex_options
23   Type: |String|
24   Default: `'-I'`
25
26   This variable can be changed to modify flags given to chktex.
27
28
29 ===============================================================================
30 cspell                                                         *ale-tex-cspell*
31
32 See |ale-cspell-options|
33
34
35 ===============================================================================
36 lacheck                                                       *ale-tex-lacheck*
37
38                                                *ale-options.lacheck_executable*
39                                                      *g:ale_lacheck_executable*
40                                                      *b:ale_lacheck_executable*
41 lacheck_executable
42 g:ale_lacheck_executable
43   Type: |String|
44   Default: `'lacheck'`
45
46   This variable can be changed to change the path to lacheck.
47
48
49 ===============================================================================
50 latexindent                                               *ale-tex-latexindent*
51
52                                        *ale-options.tex_latexindent_executable*
53                                              *g:ale_tex_latexindent_executable*
54                                              *b:ale_tex_latexindent_executable*
55 tex_latexindent_executable
56 g:ale_tex_latexindent_executable
57   Type: |String|
58   Default: `'latexindent'`
59
60   This variable can be changed to change the path to latexindent.
61
62                                           *ale-options.tex_latexindent_options*
63                                                 *g:ale_tex_latexindent_options*
64                                                 *b:ale_tex_latexindent_options*
65 tex_latexindent_options
66 g:ale_tex_latexindent_options
67   Type: |String|
68   Default: `''`
69
70   This variable can be changed to modify flags given to latexindent.
71
72
73 ===============================================================================
74 texlab                                                         *ale-tex-texlab*
75
76                                             *ale-options.tex_texlab_executable*
77                                                   *g:ale_tex_texlab_executable*
78                                                   *b:ale_tex_texlab_executable*
79 tex_texlab_executable
80 g:ale_tex_texlab_executable
81   Type: |String|
82   Default: `'texlab'`
83
84   This variable can be changed to change the path to texlab.
85
86                                                *ale-options.tex_texlab_options*
87                                                      *g:ale_tex_texlab_options*
88                                                      *b:ale_tex_texlab_options*
89 tex_texlab_options
90 g:ale_tex_texlab_options
91   Type: |String|
92   Default: `''`
93
94   This variable can be changed to modify flags given to texlab command.
95
96                                                 *ale-options.tex_texlab_config*
97                                                       *g:ale_tex_texlab_config*
98                                                       *b:ale_tex_texlab_config*
99 tex_texlab_config
100 g:ale_tex_texlab_config
101   Type: |Dictionary|
102   Default: `{}`
103
104   Dictionary containing LSP configuration settings used to initialize texlab
105   language server. Refer to texlab documentation for possible settings:
106
107   https://github.com/latex-lsp/texlab/blob/master/docs/options.md
108
109   For example to set build onSave initialization setting: >
110
111   let g:ale_tex_texlab_config = {"build":{"onSave":v:true}}
112 <
113
114 ===============================================================================
115   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: