]> git.madduck.net Git - etc/vim.git/blob - doc/ale-v.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:

Squashed '.vim/bundle/ale/' content from commit 22185c4c
[etc/vim.git] / doc / ale-v.txt
1 ===============================================================================
2 ALE V Integration                                               *ale-v-options*
3
4
5 ===============================================================================
6 Integration Information
7
8 `v` is V's build tool. `vfmt` (called as `v fmt` from the same
9 executable that does the builds) is the autoformatter/fixer.
10
11                                                    *ale-options.v_v_executable*
12                                                          *g:ale_v_v_executable*
13                                                          *b:ale_v_v_executable*
14 v_v_executable
15 g:ale_v_v_executable
16   Type: |String|
17   Default: `'v'`
18
19   The executable that will be run for the `v` linter and the `vfmt` fixer.
20
21
22 ===============================================================================
23 v                                                                     *ale-v-v*
24
25                                                       *ale-options.v_v_options*
26                                                             *g:ale_v_v_options*
27                                                             *b:ale_v_v_options*
28 v_v_options
29 g:ale_v_v_options
30   Type: |String|
31   Default: `''`
32
33   This variable can be set to pass additional options to the v linter.
34   They are injected directly after "v .".
35
36
37 ===============================================================================
38 vfmt                                                               *ale-v-vfmt*
39
40                                                    *ale-options.v_vfmt_options*
41                                                          *g:ale_v_vfmt_options*
42                                                          *b:ale_v_vfmt_options*
43 v_vfmt_options
44 g:ale_v_vfmt_options
45   Type: |String|
46   Default: `''`
47
48   This variable can be set to pass additional options to the vfmt fixer.
49   They are injected directly after "v fmt".
50
51
52 ===============================================================================
53   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: