LuaHelper icon indicating copy to clipboard operation
LuaHelper copied to clipboard

LuaHelper is a High-performance lua VSCode plugin, Language Server Protocol for lua.

Results 158 LuaHelper issues
Sort by recently updated
recently updated
newest added

在vscode里,对lua函数添加注释可以使用---来添加,但是我发现LuaHelper启用之后就无法这样添加函数注释,也找不到在什么地方设置

可以使用硬断点luapanda.bp(),但是不能使用红点点击,报错信息就是标题

``` panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x80 pc=0x326ee9] goroutine 164 [running]: luahelper-lsp/langserver/check/analysis.(*Analysis).ChangeSelfToReferVar(0xc00052a000, {0xc0003b24a3, 0x4}, {0x0, 0x0}) G:/companyproject/LuaHelper/github/LuaHelper/luahelper-lsp/langserver/check/analysis/analysis_search.go:1033 +0x89 luahelper-lsp/langserver/check/analysis.(*Analysis).findNameStr(0xc00052a000, 0xc0001ee2a0, 0xc000480000?) G:/companyproject/LuaHelper/github/LuaHelper/luahelper-lsp/langserver/check/analysis/analysis_search.go:444...

语法检查可以提供命令行工具吗?方便ci集成

https://user-images.githubusercontent.com/68118705/223340765-0b1ec951-2833-46d6-8423-cb1306eeb987.mp4

我在做APISIX openresty 插件开发,插件在APISIX或openresty中运行,需要引用相关的库,可以引用外部库么? 目前是把外部库的代码复制到工程中,不是很方便,会误修改。

Hi, thanks for your work ! But functions with variable number of parameters (like "print") returns a problem if they are called with more than 1 parameter. Example : `print(1,...

用emscripten编译成html, js 在浏览器运行调试不生效, 提示ws://127.0.0.1:8818无法连接, 建议服务器支持websocket通信. ![image](https://user-images.githubusercontent.com/11922085/217689399-dec7869d-d488-4692-bba0-4ac85dd6ca79.png)

在如下的代码中,同一个class,不同的field,指向出现有些字段注释是正确的,有些字段注释是乱码的 看起来写法没有任何问题,文本编码都是UTF-8,应该是正确的。(即便编码不正确,那为何属于部分有错) 应该是BUG,似乎是不支持 `·` 字符做文本注释? ![屏幕截图 2023-01-17 132545](https://user-images.githubusercontent.com/19978148/212817058-8e214716-a791-45da-b4e3-03dd2eeff333.png) ![屏幕截图 2023-01-17 132337](https://user-images.githubusercontent.com/19978148/212817052-6d6019e1-0085-4d5d-8c3d-c1204f6292a4.png)

```lua --[[ Date: 2023年1月5日 Author: msc --]] local name = "msc" ``` 上面的lua代码格式化之后会变成下面的这样, ```lua --[[ Date: 2023年1月5日 Author: msc --]] local name = "msc" ```