CppCXY
CppCXY
Essentially, addons plugins are just pointing to a specific library through configuration. You can achieve the same purpose by configuring .luarc.json.
Rendering code is not limited to semantic tokens; in fact, it can also be done using a custom protocol in VSCode with vscode.TextEditor.setDecorations. This rendering can override the limitations of...
实际上这样是没啥用的, 因为EmmyFacade是单例, 多个虚拟机其实是共享的一个调试实例
不过有个方法是tcpSharedListen 或许可以试试
windows下只有附加调试可以试试了
see: https://github.com/LuaLS/lua-language-server/pull/2928 I think it may not be merged.
maybe you can add follow code: ```csharp var host = args[0]; var port = int.Parse(args[1]); var listener = new HttpListener(); listener.Prefixes.Add($"http://{host}:{port}/"); listener.Start(); var context = listener.GetContext(); input = context.Request.InputStream; output...
如果library文件有---@meta注解则不会检查
I think the grammar should like: ```lua ---@class builder ---@overload fun(name: `T`): T local builder = {} ```
头顶加上---@meta可以阻止诊断,拆分成多个文件可能会提高性能