]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-glsl.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-glsl.txt
1 ===============================================================================
2 ALE GLSL Integration                                         *ale-glsl-options*
3                                                          *ale-integration-glsl*
4
5 ===============================================================================
6 Integration Information
7
8   Since Vim does not detect the glsl file types out-of-the-box, you need the
9   runtime files for glsl from here: https://github.com/tikhomirov/vim-glsl
10
11   Note that the current glslang-based linter expects glslangValidator in
12   standard paths. If it's not installed system-wide you can set
13   |g:ale_glsl_glslang_executable| to a specific path.
14
15
16 ===============================================================================
17 glslang                                                      *ale-glsl-glslang*
18
19                                           *ale-options.glsl_glslang_executable*
20                                                 *g:ale_glsl_glslang_executable*
21                                                 *b:ale_glsl_glslang_executable*
22 glsl_glslang_executable
23 g:ale_glsl_glslang_executable
24   Type: |String|
25   Default: `'glslangValidator'`
26
27   This variable can be changed to change the path to glslangValidator.
28
29                                              *ale-options.glsl_glslang_options*
30                                                    *g:ale_glsl_glslang_options*
31                                                    *b:ale_glsl_glslang_options*
32 glsl_glslang_options
33 g:ale_glsl_glslang_options
34   Type: |String|
35   Default: `''`
36
37   This variable can be set to pass additional options to glslangValidator.
38
39
40 ===============================================================================
41 glslls                                                        *ale-glsl-glslls*
42
43                                            *ale-options.glsl_glslls_executable*
44                                                  *g:ale_glsl_glslls_executable*
45                                                  *b:ale_glsl_glslls_executable*
46 glsl_glslls_executable
47 g:ale_glsl_glslls_executable
48   Type: |String|
49   Default: `'glslls'`
50
51   This variable can be changed to change the path to glslls.
52   See |ale-integrations-local-executables|
53
54                                               *ale-options.glsl_glslls_logfile*
55                                                     *g:ale_glsl_glslls_logfile*
56                                                     *b:ale_glsl_glslls_logfile*
57 glsl_glslls_logfile
58 g:ale_glsl_glslls_logfile
59   Type: |String|
60   Default: `''`
61
62   Setting this variable to a writeable file path will enable logging to that
63   file.
64
65
66 ===============================================================================
67   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: