lua-language-server
lua-language-server copied to clipboard
A language server that offers Lua language support - programmed in Lua
Kakashi Hub
local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))() local Window = Library.CreateLib("Kakashi HUB", "DarkTheme") local Tab = Window:NewTab("หน้าแรก") local Section = Tab:NewSection("หน้าแรก") Section:NewToggle("วิ่งไว", "ควย", function(state) if state then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30 else game.Players.LocalPlayer.Character.Humanoid.WalkSpeed =...
It would be nice to be able to pull out repeated expressions or expand an expression on demand. So one could jump back and forth between for example: ```lua function...
### 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? Plugins ### Expected Behaviour Defining...
> https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_prepareCallHierarchy
The following related issues are not fixed by this PR, but I tested and they already work as of `v3.10.5`: ~#2509~, #1343, #1146 **edit**: I originally thought #2509 is working,...
### 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? 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? NeoVim ### Which OS are you using? MacOS ### What is the issue affecting? Completion ### Expected Behaviour Get back a completion item...
```lua ---@class Class ---@overload fun(): self|Class local Class = {} local c = Class() local unknown = c() -- but unknown is Class ``` I thought that was the indication...
> [!NOTE] > Just a heads up, this is gonna be a lengthy issue. # Summary **I would like to see some helper types get implemented**, which would simplify writing...