]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/bundle/ale/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:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-v.txt
diff --git a/.vim/bundle/ale/doc/ale-v.txt b/.vim/bundle/ale/doc/ale-v.txt
new file mode 100644 (file)
index 0000000..eafbc09
--- /dev/null
@@ -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: