lua-language-server
lua-language-server copied to clipboard
A language server that offers Lua language support - programmed in Lua
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Windows ### What is the issue affecting? Type Checking ### Expected Behaviour...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Linux ### What is the issue affecting? Diagnostics/Syntax Checking ### Expected Behaviour...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? MacOS ### What is the issue affecting? Diagnostics/Syntax Checking ### Expected Behaviour...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Windows ### What is the issue affecting? Type Checking ### Expected Behaviour...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Windows ### What is the issue affecting? Diagnostics/Syntax Checking, Libraries, Plugins, Other...
### How are you using the lua-language-server? NeoVim ### Which OS are you using? Linux ### What is the issue affecting? Completion ### Expected Behaviour correct label value. ### Actual...
It would be pretty useful to have an indicator of whether the function may error (and thus needs to be handled with `pcall` or the like). ```lua ---@fallible ---@param bar...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? Linux ### What is the issue affecting? Libraries ### Expected Behaviour I...
Can it support [pre-commit](https://pre-commit.com/) like ? TIA!
``` lua ---@param name string ---@param age? number function addPerson(name, age) age = age or 18 end ``` How can I specify that the `age` parameter is optional and has...