]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-thrift.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:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-thrift.txt
1 ===============================================================================
2 ALE Thrift Integration                                     *ale-thrift-options*
3
4
5 ===============================================================================
6 thrift                                                      *ale-thrift-thrift*
7
8 The `thrift` linter works by compiling the buffer's contents and reporting any
9 errors reported by the parser and the configured code generator(s).
10
11
12 -------------------------------------------------------------------------------
13 Options
14                                          *ale-options.thrift_thrift_executable*
15                                                *g:ale_thrift_thrift_executable*
16                                                *b:ale_thrift_thrift_executable*
17 thrift_thrift_executable
18 g:ale_thrift_thrift_executable
19   Type: |String|
20   Default: `'thrift'`
21
22   See |ale-integrations-local-executables|
23
24                                          *ale-options.thrift_thrift_generators*
25                                                *g:ale_thrift_thrift_generators*
26                                                *b:ale_thrift_thrift_generators*
27 thrift_thrift_generators
28 g:ale_thrift_thrift_generators
29   Type: |List|
30   Default: `['cpp']`
31
32   This list must contain one or more named code generators. Generator options
33   can be included as part of each string, e.g. `['py:dynamic']`.
34
35                                            *ale-options.thrift_thrift_includes*
36                                                  *g:ale_thrift_thrift_includes*
37                                                  *b:ale_thrift_thrift_includes*
38 thrift_thrift_includes
39 g:ale_thrift_thrift_includes
40   Type: |List|
41   Default: `['.']`
42
43   This list contains paths that will be searched for thrift `include`
44   directives.
45
46                                             *ale-options.thrift_thrift_options*
47                                                   *g:ale_thrift_thrift_options*
48                                                   *b:ale_thrift_thrift_options*
49 thrift_thrift_options
50 g:ale_thrift_thrift_options
51   Type: |String|
52   Default: `'-strict'`
53
54   This variable can be changed to customize the additional command-line
55   arguments that are passed to the thrift compiler.
56
57
58 ===============================================================================
59 thriftcheck                                            *ale-thrift-thriftcheck*
60
61                                     *ale-options.thrift_thriftcheck_executable*
62                                           *g:ale_thrift_thriftcheck_executable*
63                                           *b:ale_thrift_thriftcheck_executable*
64 thrift_thriftcheck_executable
65 g:ale_thrift_thriftcheck_executable
66   Type: |String|
67   Default: `'thriftcheck'`
68
69   See |ale-integrations-local-executables|
70
71                                        *ale-options.thrift_thriftcheck_options*
72                                              *g:ale_thrift_thriftcheck_options*
73                                              *b:ale_thrift_thriftcheck_options*
74 thrift_thriftcheck_options
75 g:ale_thrift_thriftcheck_options
76   Type: |String|
77   Default: `''`
78
79   This variable can be changed to customize the additional command-line
80   arguments that are passed to thriftcheck.
81
82
83 ===============================================================================
84   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: