X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/doc/ale-v.txt?ds=sidebyside diff --git a/.vim/bundle/ale/doc/ale-v.txt b/.vim/bundle/ale/doc/ale-v.txt new file mode 100644 index 00000000..eafbc09e --- /dev/null +++ b/.vim/bundle/ale/doc/ale-v.txt @@ -0,0 +1,53 @@ +=============================================================================== +ALE V Integration *ale-v-options* + + +=============================================================================== +Integration Information + +`v` is V's build tool. `vfmt` (called as `v fmt` from the same +executable that does the builds) is the autoformatter/fixer. + + *ale-options.v_v_executable* + *g:ale_v_v_executable* + *b:ale_v_v_executable* +v_v_executable +g:ale_v_v_executable + Type: |String| + Default: `'v'` + + The executable that will be run for the `v` linter and the `vfmt` fixer. + + +=============================================================================== +v *ale-v-v* + + *ale-options.v_v_options* + *g:ale_v_v_options* + *b:ale_v_v_options* +v_v_options +g:ale_v_v_options + Type: |String| + Default: `''` + + This variable can be set to pass additional options to the v linter. + They are injected directly after "v .". + + +=============================================================================== +vfmt *ale-v-vfmt* + + *ale-options.v_vfmt_options* + *g:ale_v_vfmt_options* + *b:ale_v_vfmt_options* +v_vfmt_options +g:ale_v_vfmt_options + Type: |String| + Default: `''` + + This variable can be set to pass additional options to the vfmt fixer. + They are injected directly after "v fmt". + + +=============================================================================== + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: