lua-language-server
lua-language-server copied to clipboard
A language server that offers Lua language support - programmed in Lua
# Steps ```bash git clone https://github.com/sumneko/lua-language-server lua cd lua git submodule update --init --recursive cd 3rd/luamake ./compile/install.sh ``` # Output ```bash [2/46] Compile C++ build/linux/obj/source_bee/lua_filewatch.obj FAILED: build/linux/obj/source_bee/lua_filewatch.obj gcc -MMD -MT...
Hello all. I'm having trouble installing the C++ version which is required for the language server. Can someone help me in installing the C++17 on Ubuntu 32 bit? All help...
**Describe the bug** Extension forces color changes in every available color mode. **To Reproduce** Steps to reproduce the behaviour: 1. Go to extension settings. 2. Change color mode to any...
I cannot figure out a way to make a function return the type information of a module. Basically, we have a wrapper function for require, which takes 2 params, the...
I have a project with 3K+ Lua files I need to format. The problem is if I use something like [this](https://marketplace.visualstudio.com/items?itemName=jbockle.jbockle-format-files) it takes forever. I disabled diagnostics like this: ```json...
This is yet another feature/enhancement idea to make annotations easier to read/write. Perhaps it's come up before, but I couldn't find any issues or discussions about it. It's wise to...
  [test.zip](https://github.com/sumneko/lua-language-server/files/8924920/test.zip) 在init.lua里无法识别const.A的子级数据。不确定这个问题是否是为了节省计算故意的
This is probably really hard to "fix". ```lua ---@type table|nil local blueprint = { x = 1 } local hasBlueprint = true if blueprint == nil then hasBlueprint = false...
```lua ---@class Car ---@field color string local Car = {}; ---@return Car function Car:New() end ---@param any_car Car ---@return fun(car: Car): boolean local function GenerateFn(any_car) ---@param car Car return function(car)...