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.
1 ===============================================================================
2 ALE GLSL Integration *ale-glsl-options*
5 ===============================================================================
6 Integration Information
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
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.
16 ===============================================================================
17 glslang *ale-glsl-glslang*
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
25 Default: `'glslangValidator'`
27 This variable can be changed to change the path to glslangValidator.
29 *ale-options.glsl_glslang_options*
30 *g:ale_glsl_glslang_options*
31 *b:ale_glsl_glslang_options*
33 g:ale_glsl_glslang_options
37 This variable can be set to pass additional options to glslangValidator.
40 ===============================================================================
41 glslls *ale-glsl-glslls*
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
51 This variable can be changed to change the path to glslls.
52 See |ale-integrations-local-executables|
54 *ale-options.glsl_glslls_logfile*
55 *g:ale_glsl_glslls_logfile*
56 *b:ale_glsl_glslls_logfile*
58 g:ale_glsl_glslls_logfile
62 Setting this variable to a writeable file path will enable logging to that
66 ===============================================================================
67 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: