]> git.madduck.net Git - etc/vim.git/blobdiff - .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:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-thrift.txt
diff --git a/.vim/bundle/ale/doc/ale-thrift.txt b/.vim/bundle/ale/doc/ale-thrift.txt
new file mode 100644 (file)
index 0000000..d4ca549
--- /dev/null
@@ -0,0 +1,84 @@
+===============================================================================
+ALE Thrift Integration                                     *ale-thrift-options*
+
+
+===============================================================================
+thrift                                                      *ale-thrift-thrift*
+
+The `thrift` linter works by compiling the buffer's contents and reporting any
+errors reported by the parser and the configured code generator(s).
+
+
+-------------------------------------------------------------------------------
+Options
+                                         *ale-options.thrift_thrift_executable*
+                                               *g:ale_thrift_thrift_executable*
+                                               *b:ale_thrift_thrift_executable*
+thrift_thrift_executable
+g:ale_thrift_thrift_executable
+  Type: |String|
+  Default: `'thrift'`
+
+  See |ale-integrations-local-executables|
+
+                                         *ale-options.thrift_thrift_generators*
+                                               *g:ale_thrift_thrift_generators*
+                                               *b:ale_thrift_thrift_generators*
+thrift_thrift_generators
+g:ale_thrift_thrift_generators
+  Type: |List|
+  Default: `['cpp']`
+
+  This list must contain one or more named code generators. Generator options
+  can be included as part of each string, e.g. `['py:dynamic']`.
+
+                                           *ale-options.thrift_thrift_includes*
+                                                 *g:ale_thrift_thrift_includes*
+                                                 *b:ale_thrift_thrift_includes*
+thrift_thrift_includes
+g:ale_thrift_thrift_includes
+  Type: |List|
+  Default: `['.']`
+
+  This list contains paths that will be searched for thrift `include`
+  directives.
+
+                                            *ale-options.thrift_thrift_options*
+                                                  *g:ale_thrift_thrift_options*
+                                                  *b:ale_thrift_thrift_options*
+thrift_thrift_options
+g:ale_thrift_thrift_options
+  Type: |String|
+  Default: `'-strict'`
+
+  This variable can be changed to customize the additional command-line
+  arguments that are passed to the thrift compiler.
+
+
+===============================================================================
+thriftcheck                                            *ale-thrift-thriftcheck*
+
+                                    *ale-options.thrift_thriftcheck_executable*
+                                          *g:ale_thrift_thriftcheck_executable*
+                                          *b:ale_thrift_thriftcheck_executable*
+thrift_thriftcheck_executable
+g:ale_thrift_thriftcheck_executable
+  Type: |String|
+  Default: `'thriftcheck'`
+
+  See |ale-integrations-local-executables|
+
+                                       *ale-options.thrift_thriftcheck_options*
+                                             *g:ale_thrift_thriftcheck_options*
+                                             *b:ale_thrift_thriftcheck_options*
+thrift_thriftcheck_options
+g:ale_thrift_thriftcheck_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be changed to customize the additional command-line
+  arguments that are passed to thriftcheck.
+
+
+===============================================================================
+  vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: