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

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-dhall.txt
1 ===============================================================================
2 ALE Dhall Integration                                       *ale-dhall-options*
3
4 Dhall - https://dhall-lang.org/
5
6                                                  *ale-options.dhall_executable*
7                                                        *g:ale_dhall_executable*
8                                                        *b:ale_dhall_executable*
9 dhall_executable
10 g:ale_dhall_executable
11   Type: |String|
12   Default: `'dhall'`
13
14                                                     *ale-options.dhall_options*
15                                                           *g:ale_dhall_options*
16                                                           *b:ale_dhall_options*
17 dhall_options
18 g:ale_dhall_options
19   Type: |String|
20   Default: `''`
21
22   This variable can be set to pass additional options to the 'dhall` executable.
23   This is shared with `dhall-freeze` and `dhall-lint`.
24 >
25   let g:ale_dhall_options = '--ascii'
26 <
27
28 ===============================================================================
29 dhall-format                                                 *ale-dhall-format*
30
31
32 ===============================================================================
33 dhall-freeze                                                 *ale-dhall-freeze*
34
35
36 -------------------------------------------------------------------------------
37 Options
38                                              *ale-options.dhall_freeze_options*
39                                                    *g:ale_dhall_freeze_options*
40                                                    *b:ale_dhall_freeze_options*
41 dhall_freeze_options
42 g:ale_dhall_freeze_options
43   Type: |String|
44   Default: `''`
45
46   This variable can be set to pass additional options to the 'dhall freeze`
47   executable.
48 >
49   let g:ale_dhall_freeze_options = '--all'
50 <
51
52 ===============================================================================
53 dhall-lint                                                     *ale-dhall-lint*
54
55
56 ===============================================================================
57   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: