lua-language-server
lua-language-server copied to clipboard
A language server that offers Lua language support - programmed in Lua
Will there be IntelliJ or any other IDE support of Jetbrains?
### How are you using the lua-language-server? Other ### Which OS are you using? Windows ### What is the issue affecting? Annotations, Type Checking ### Expected Behaviour ```lua ---@class Vehicle...
### How are you using the lua-language-server? NeoVim ### Which OS are you using? OpenBSD current/amd64 (future version 7.6) ### What is the issue affecting? Compilation of `luamake` ### Expected...
I expect something like this or something similar to this to work but it doesn't also when I e.g. split it up onto multiple lines ```lua ---@field cat { ["name"]:...
I expect error to occur on last line, because formal and actual signatures of callbacks do not match. But no any warnings happened. 
### How are you using the lua-language-server? Other ### Which OS are you using? Linux ### What is the issue affecting? Other ### Expected Behaviour There should be colors in...
### multiple returns in function calls / table definitions ```lua local a = { "one", "two", "three" } local b = { unpack(a), "four" } local c = { "four",...
I think this is somewhat similar to #460, where the difference is that the callback is defined as a local variable. # Example Using the sample code in the above...
The situation: ```lua ---@class Test ---@field foo number ---@return Test local function test() return { foo = 'this is not a number!', } end ``` The code passes as valid...
### How are you using the lua-language-server? Command Line ### Which OS are you using? Linux ### What is the issue affecting? Diagnostics/Syntax Checking ### Expected Behaviour NO error. ###...