summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2023-08-07 22:38:09 +0200
committercos <cos>2025-08-13 18:39:43 +0200
commit094c7c62109f6e52bc38973f3cf09b1655ff8161 (patch)
treeb87517356002fde6e1a9341689282fb3f4e545e2
parent822d9a1bf343040f5a6387c366f34ec8559697dd (diff)
downloadale-fix/lua-language-server_docs.zip
Fix lua_language_server_config variable namefix/lua-language-server_docs
Since added in commit f2a21c9, the implementation and documentation has differed in their naming. The latter has had an additional lua_-prefix. With this fix, setting the variable as documented actually results in a 'workspace/didChangeConfiguration' method being executed on the luals. Adding a reference to the documentation of which configurations the lsp supports doesn't hurt, so that's done too.
-rw-r--r--doc/ale-lua.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/doc/ale-lua.txt b/doc/ale-lua.txt
index dea526cc..f1441799 100644
--- a/doc/ale-lua.txt
+++ b/doc/ale-lua.txt
@@ -49,17 +49,22 @@ g:ale_lua_language_server_executable
If you have compiled the language server yourself in `/some/path`, the path
will be `'/some/path/bin/lua-language-server'`.
- *ale-options.lua_lua_language_server_config*
- *g:ale_lua_lua_language_server_config*
- *b:ale_lua_lua_language_server_config*
-lua_lua_language_server_config
-g:ale_lua_lua_language_server_config
+ *ale-options.lua_language_server_config*
+ *g:ale_lua_language_server_config*
+ *b:ale_lua_language_server_config*
+lua_language_server_config
+g:ale_lua_language_server_config
+
Type: |Dictionary|
Default: `{}`
Dictionary containing configuration settings that will be passed to the
language server.
+ For available configuration parameters, see `Settings` on the luals wiki:
+
+ https://luals.github.io/wiki/settings/
+
===============================================================================
luac *ale-lua-luac*