Files
ale/doc/ale-v.txt
w0rp 400857d758 Implement Lua ALE setup & overhaul documentation
1. Add ale.setup and ale.setup.buffer for pure Lua configuration.
2. Update many global settings to use Booleans instead of numbers to
   make types easiert to work with in Lua.
3. Radically reformat documentation and fix errors to make
   documentation more usable for Neovim users.
2025-03-27 12:40:11 +00:00

54 lines
2.0 KiB
Plaintext

===============================================================================
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: