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? Windows ### What is the issue affecting? Type Checking, Diagnostics/Syntax Checking ###...
### 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, Diagnostics/Syntax Checking ###...
### Which OS are you using? Windows ### Expected Behaviour When I use the VSCode function to define a variable as allowed global, it should re-use the formatting of the...
so I have this (as a mockup): ```lua do ---@class a local a = {} ---@generic T ---@param self a ---@param new T ---@return T a.extend = function(self, new) --......
### 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? Type Checking ### Expected Behaviour...
### How are you using the lua-language-server? NeoVim ### Which OS are you using? Linux ### What is the issue affecting? Annotations, Type Checking, Diagnostics/Syntax Checking ### Expected Behaviour Should...
### 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...
### 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? Annotations, Type Checking ### Expected...
I hope that the code below in function can reach expectation: ```lua function Set(id) rawset(_G, id, "test") end Set("test") ---set `_G.test` print(test) -- `_G.test` is not exist there ``` Original...