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.
1 ===============================================================================
2 ALE Lua Integration *ale-lua-options*
5 ===============================================================================
6 cspell *ale-lua-cspell*
8 See |ale-cspell-options|
11 ===============================================================================
12 lua-format *ale-lua-lua-format*
14 *ale-options.lua_lua_format_executable*
15 *g:ale_lua_lua_format_executable*
16 *b:ale_lua_lua_format_executable*
17 lua_lua_format_executable
18 g:ale_lua_lua_format_executable
20 Default: `'lua-format'`
22 This variable can be changed to change the path to lua-format.
24 *ale-options.lua_lua_format_options*
25 *g:ale_lua_lua_format_options*
26 *b:ale_lua_lua_format_options*
27 lua_lua_format_options
28 g:ale_lua_lua_format_options
32 This variable can be set to pass additional options to lua-format.
35 ===============================================================================
36 lua-language-server *ale-lua-lua-language-server*
37 *ale-lua-language-server*
39 *ale-options.lua_language_server_executable*
40 *g:ale_lua_language_server_executable*
41 *b:ale_lua_language_server_executable*
42 lua_language_server_executable
43 g:ale_lua_language_server_executable
45 Default: `'lua-language-server'`
47 This variable can be changed to set the path to lua-language-server.
49 If you have compiled the language server yourself in `/some/path`, the path
50 will be `'/some/path/bin/lua-language-server'`.
52 *ale-options.lua_lua_language_server_config*
53 *g:ale_lua_lua_language_server_config*
54 *b:ale_lua_lua_language_server_config*
55 lua_lua_language_server_config
56 g:ale_lua_lua_language_server_config
60 Dictionary containing configuration settings that will be passed to the
64 ===============================================================================
67 *ale-options.lua_luac_executable*
68 *g:ale_lua_luac_executable*
69 *b:ale_lua_luac_executable*
71 g:ale_lua_luac_executable
75 This variable can be changed to change the path to luac.
78 ===============================================================================
79 luacheck *ale-lua-luacheck*
81 *ale-options.lua_luacheck_executable*
82 *g:ale_lua_luacheck_executable*
83 *b:ale_lua_luacheck_executable*
84 lua_luacheck_executable
85 g:ale_lua_luacheck_executable
89 This variable can be changed to change the path to luacheck.
91 *ale-options.lua_luacheck_options*
92 *g:ale_lua_luacheck_options*
93 *b:ale_lua_luacheck_options*
95 g:ale_lua_luacheck_options
99 This variable can be set to pass additional options to luacheck.
102 ===============================================================================
103 luafmt *ale-lua-luafmt*
105 *ale-options.lua_luafmt_executable*
106 *g:ale_lua_luafmt_executable*
107 *b:ale_lua_luafmt_executable*
108 lua_luafmt_executable
109 g:ale_lua_luafmt_executable
113 This variable can be set to use a different executable for luafmt.
115 *ale-options.lua_luafmt_options*
116 *g:ale_lua_luafmt_options*
117 *b:ale_lua_luafmt_options*
119 g:ale_lua_luafmt_options
123 This variable can be set to pass additional options to the luafmt fixer.
126 ===============================================================================
127 selene *ale-lua-selene*
129 *ale-options.lua_selene_executable*
130 *g:ale_lua_selene_executable*
131 *b:ale_lua_selene_executable*
132 lua_selene_executable
133 g:ale_lua_selene_executable
137 This variable can be set to use a different executable for selene.
139 *ale-options.lua_selene_options*
140 *g:ale_lua_selene_options*
141 *b:ale_lua_selene_options*
143 g:ale_lua_selene_options
147 This variable can be set to pass additional options to selene.
150 ===============================================================================
151 stylua *ale-lua-stylua*
153 *ale-options.lua_stylua_executable*
154 *g:ale_lua_stylua_executable*
155 *b:ale_lua_stylua_executable*
156 lua_stylua_executable
157 g:ale_lua_stylua_executable
161 This variable can be set to use a different executable for stylua.
163 *ale-options.lua_stylua_options*
164 *g:ale_lua_stylua_options*
165 *b:ale_lua_stylua_options*
167 g:ale_lua_stylua_options
171 This variable can be set to pass additional options to the stylua fixer.
174 ===============================================================================
175 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: