]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-elm.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-elm.txt
1 ===============================================================================
2 ALE Elm Integration                                           *ale-elm-options*
3
4
5 ===============================================================================
6 elm-format                                                 *ale-elm-elm-format*
7
8                                             *ale-options.elm_format_executable*
9                                                   *g:ale_elm_format_executable*
10                                                   *b:ale_elm_format_executable*
11 elm_format_executable
12 g:ale_elm_format_executable
13   Type: |String|
14   Default: `'elm-format'`
15
16   See |ale-integrations-local-executables|
17
18                                             *ale-options.elm_format_use_global*
19                                                   *g:ale_elm_format_use_global*
20                                                   *b:ale_elm_format_use_global*
21 elm_format_use_global
22 g:ale_elm_format_use_global
23   Type: |Number|
24   Default: `get(g:, 'ale_use_global_executables', 0)`
25
26   See |ale-integrations-local-executables|
27
28                                                *ale-options.elm_format_options*
29                                                      *g:ale_elm_format_options*
30                                                      *b:ale_elm_format_options*
31 elm_format_options
32 g:ale_elm_format_options
33   Type: |String|
34   Default: `'--yes'`
35
36   This variable can be set to pass additional options to elm-format.
37
38
39 ===============================================================================
40 elm-ls                                                         *ale-elm-elm-ls*
41
42                                                 *ale-options.elm_ls_executable*
43                                                       *g:ale_elm_ls_executable*
44                                                       *b:ale_elm_ls_executable*
45 elm_ls_executable
46 g:ale_elm_ls_executable
47   Type: |String|
48   Default: `'elm-language-server'`
49
50   See |ale-integrations-local-executables|
51
52                                                 *ale-options.elm_ls_use_global*
53                                                       *g:ale_elm_ls_use_global*
54                                                       *b:ale_elm_ls_use_global*
55 elm_ls_use_global
56 g:ale_elm_ls_use_global
57   Type: |Number|
58   Default: `get(g:, 'ale_use_global_executables', 1)`
59
60   See |ale-integrations-local-executables|
61
62                                                   *ale-options.elm_ls_elm_path*
63                                                         *g:ale_elm_ls_elm_path*
64                                                         *b:ale_elm_ls_elm_path*
65 elm_ls_elm_path
66 g:ale_elm_ls_elm_path
67   Type: |String|
68   Default: `''`
69
70   See |ale-integrations-local-executables|
71
72                                            *ale-options.elm_ls_elm_format_path*
73                                                  *g:ale_elm_ls_elm_format_path*
74                                                  *b:ale_elm_ls_elm_format_path*
75 elm_ls_elm_format_path
76 g:ale_elm_ls_elm_format_path
77   Type: |String|
78   Default: `''`
79
80   See |ale-integrations-local-executables|
81
82                                              *ale-options.elm_ls_elm_test_path*
83                                                    *g:ale_elm_ls_elm_test_path*
84                                                    *b:ale_elm_ls_elm_test_path*
85 elm_ls_elm_test_path
86 g:ale_elm_ls_elm_test_path
87   Type: |String|
88   Default: `''`
89
90   See |ale-integrations-local-executables|
91
92                                        *ale-options.elm_ls_elm_analyse_trigger*
93                                              *g:ale_elm_ls_elm_analyse_trigger*
94                                              *b:ale_elm_ls_elm_analyse_trigger*
95 elm_ls_elm_analyse_trigger
96 g:ale_elm_ls_elm_analyse_trigger
97   Type: |String|
98   Default: `'change'`
99
100   One of 'change', 'save' or 'never'
101
102
103 ===============================================================================
104 elm-make                                                     *ale-elm-elm-make*
105
106                                               *ale-options.elm_make_executable*
107                                                     *g:ale_elm_make_executable*
108                                                     *b:ale_elm_make_executable*
109 elm_make_executable
110 g:ale_elm_make_executable
111   Type: |String|
112   Default: `'elm'`
113
114   See |ale-integrations-local-executables|
115
116                                               *ale-options.elm_make_use_global*
117                                                     *g:ale_elm_make_use_global*
118                                                     *b:ale_elm_make_use_global*
119 elm_make_use_global
120 g:ale_elm_make_use_global
121   Type: |Number|
122   Default: `get(g:, 'ale_use_global_executables', 0)`
123
124   See |ale-integrations-local-executables|
125
126
127 ===============================================================================
128   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: