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

### How are you using the lua-language-server? NeoVim ### Which OS are you using? MacOS ### What is the issue affecting? Annotations ### Expected Behaviour Running `lua-language-server --version` should return...

### 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? Other ### Expected Behaviour documentation...

### 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? Other ### Expected Behaviour Addon...

This is a feature request for a new setting for LLS which would not diagnose `unused-local` for variables which are parameters of a function. Something like ```json "Lua.diagnostics.unusedLocalExcludeFuncParam": true ```...

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

This may seem like a ridiculous idea, and it is, but a project I am working with called Recoil Engine has a concept called "gadgets", which run in different contexts...

### 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? Other ### Expected Behaviour 5.4...

Returning of errors from Lua functions is often done by returning nil + error message (`nil,string`): ```lua ---@return table ---@overload fun(): nil, string local function doSomething() ``` but this syntax...

This PR modifies the generics capture system to allow to capture types out of the type of the parameter passed, in addition to being able to pass the type as...

Hi 👋 I was wondering if it would be possible for LuaLS to infer the types of the arguments passed to `pcall` based on the signature of its first function...