CppCXY
CppCXY
because 1.4.7 remove new index system, it may be necessary to wait until 2023.2 for the author to come out and handle it.
> `CTRL+CLICK` works currently for `object.method()` or `self.method()` but not for `self:method()` in plugin version `1.4.7-IDEA231` in PHPStorm `Build #PS-232.8660.205, built on July 28, 2023`. > >  1.4.8 has...
chunkname问题, 可能你的chunkname(chunkname不是modname, modname的标准形式是AAA.BBB.CCC)不符合标准的 AAAA/BBB/CCC的形式, 你可能需要在custom loader中修改chunkname
> > > > chunkname在哪里修改呢? 前面回答过了, 如果是xlua这样的就在custom loader, 如果不是需要自己去查代码, 比如lua_loadbuffer这样的接口
对于异常命中的断点主要原因是插件对断点有残留,你可以对异常命中的位置直接加一个断点然后再取消
这个残留主要是因为在调试时编辑代码, 导致断点位移, 触发了IDE的相关事件, IDE会先移除老断点, 再新增一个断点.但是IDE给过来移除的断点的位置是新的位置,而不是老的位置.导致这里无法正确移除老断点. 可能需要追踪这个断点对象才能处理这个事情. 我记得之前试图改过, 但是好像没改对.
从release 下载1.5.1版本的调试器看看,
emmylua附加调试用的调试器就是来自EmmyLuaDebugger项目
This is the latest emmylua bug, I don't know when it will be fixed, the author cut a lot of normal features to fix the crush problem, and I don't...
This is a problem with the entire design. JetBrains does not allow certain computations during indexing, which can lead to freezes. To solve the freezing issue, EmmyLua can only cut...