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? NeoVim ### Which OS are you using? MacOS ### What is the issue affecting? Other ### Expected Behaviour The language server starts normally....
Hello, I am trying to implement [teal](https://github.com/teal-language/tl) support for the language server using the plugin feature, but this is extremely difficult mainly due to the primitiveness of lua's pattern matching...
### 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? Completion ### Expected Behaviour In...
### 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 ### Expected Behaviour...
如下定义,然后` return nil, 'some error'`不会有波浪线提示错误 ``` ---@return string, number ---@overload fun(): nil, string local function foo11() do return 'foo', 1 end do return nil, 'some error' end end ``` 讨论见:...
两个方案,大佬参考: 方案一采用语法`@return ()|()|()`这种 ``` ---@return (string,number)|(nil, string) local function foo() do return 'foo', 1 --正常 end do return nil, 'some error' --正常 end do return nil, 1 -- 此处出错 end...
### 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? Completion ### 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? Completion ### Expected Behaviour When...
### 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? Type Checking, Completion, Libraries ###...
### 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, Completion ### Expected...