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

I have some code where I have to wait for a forked process to create a file and I can't get feedback over its return status or stdout, so I...

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

Annotations `@enum` and `@enum (key)` produce very different JSON output. # Annotation `@enum` ```lua ---@enum level1 ---Description of enum level1. local level1 = { low = 1, --Low level. high...

### How are you using the lua-language-server? NeoVim ### Which OS are you using? Linux ### What is the issue affecting? Other ### Expected Behaviour Using vim.lsp.buf.definition() to go to...

### 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? Formatting ### Expected Behaviour A...

### How are you using the lua-language-server? NeoVim ### Which OS are you using? Linux ### What is the issue affecting? Type Checking, Diagnostics/Syntax Checking ### Expected Behaviour ```lua ---@class...

Indexing large projects with a lot of dependencies can get quite slow, and with extremely large files autocomplete slows down. Is a port to LuaJIT possible/considered? I am considering making...

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

I have the following use case. There's a library that defines a global `vim.g` as `table`. In my application code, I want to utilise only the "autoformat" key of that...

I'm working on a framework where users of it implement a kind of module that mixes their provided logic with some optional event handlers. Here is a simple example ```...