lua-language-server icon indicating copy to clipboard operation
lua-language-server copied to clipboard

A language server that offers Lua language support - programmed in Lua

Results 496 lua-language-server issues
Sort by recently updated
recently updated
newest added

Will there be IntelliJ or any other IDE support of Jetbrains?

question

### 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"]:...

enhancement

I expect error to occur on last line, because formal and actual signatures of callbacks do not match. But no any warnings happened. ![image](https://github.com/LuaLS/lua-language-server/assets/75124358/30715c3d-c96f-4681-a5bd-7cbea13f73b5)

### 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. ###...