X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/doc/ale-glsl.txt?ds=sidebyside diff --git a/.vim/bundle/ale/doc/ale-glsl.txt b/.vim/bundle/ale/doc/ale-glsl.txt new file mode 100644 index 00000000..986be502 --- /dev/null +++ b/.vim/bundle/ale/doc/ale-glsl.txt @@ -0,0 +1,67 @@ +=============================================================================== +ALE GLSL Integration *ale-glsl-options* + *ale-integration-glsl* + +=============================================================================== +Integration Information + + Since Vim does not detect the glsl file types out-of-the-box, you need the + runtime files for glsl from here: https://github.com/tikhomirov/vim-glsl + + Note that the current glslang-based linter expects glslangValidator in + standard paths. If it's not installed system-wide you can set + |g:ale_glsl_glslang_executable| to a specific path. + + +=============================================================================== +glslang *ale-glsl-glslang* + + *ale-options.glsl_glslang_executable* + *g:ale_glsl_glslang_executable* + *b:ale_glsl_glslang_executable* +glsl_glslang_executable +g:ale_glsl_glslang_executable + Type: |String| + Default: `'glslangValidator'` + + This variable can be changed to change the path to glslangValidator. + + *ale-options.glsl_glslang_options* + *g:ale_glsl_glslang_options* + *b:ale_glsl_glslang_options* +glsl_glslang_options +g:ale_glsl_glslang_options + Type: |String| + Default: `''` + + This variable can be set to pass additional options to glslangValidator. + + +=============================================================================== +glslls *ale-glsl-glslls* + + *ale-options.glsl_glslls_executable* + *g:ale_glsl_glslls_executable* + *b:ale_glsl_glslls_executable* +glsl_glslls_executable +g:ale_glsl_glslls_executable + Type: |String| + Default: `'glslls'` + + This variable can be changed to change the path to glslls. + See |ale-integrations-local-executables| + + *ale-options.glsl_glslls_logfile* + *g:ale_glsl_glslls_logfile* + *b:ale_glsl_glslls_logfile* +glsl_glslls_logfile +g:ale_glsl_glslls_logfile + Type: |String| + Default: `''` + + Setting this variable to a writeable file path will enable logging to that + file. + + +=============================================================================== + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: