lua-debug icon indicating copy to clipboard operation
lua-debug copied to clipboard

Lua Debug Adapter for Visual Studio Code

Results 42 lua-debug issues
Sort by recently updated
recently updated
newest added

## 必要性 大项目中,当前的hook event,会导致大量的cpu浪费,较为明显的减缓整体的运行水平. 使用`中断`指令会近乎为零的开销. ## 调试器现实 [devCAT.lua-debug](https://marketplace.visualstudio.com/items?itemName=devCAT.lua-debug)区别了`中断模式`和`纯lua模式` ```lua if debug.sethalt then breaker = createHaltBreaker() breakerType = 'halt' else breaker = createPureBreaker() breakerType = 'pure' end ``` ## 路线图 1....

![image](https://user-images.githubusercontent.com/13972192/180112143-f57e1bad-7691-4ffd-bcab-25c658893352.png) The default config is just not enough for me as `stopOnEntry` is a pain and I also need to pre load a file in `arg0` to set up custom...

enhancement

请问我自从升级vscode之后就不能调试. vscode版本:1.68.1 lua-debug版本:1.58.2 自己的c++程序不能launch,但是能调试lua代码。 而且我设置了internalConsle之后程序不能启动,设置成另外一个模式可以在vscode自带的temminal启动,但是不能连接到调试器,关闭调试器的时候显示timeout。 (ps:内网程序没法截图)

有时attach下启动调试后闪退,希望能看到客户端这边的日志。目前是使用商店下载的二进制版本

Hi, I'm using this extension for the first time, and I'm getting the problem described in this closed issue: https://github.com/actboy168/lua-debug/issues/153. To reproduce, add breakpoint to this file: #!/usr/bin/env lua print(_VERSION)...

I have a subfolder, in which scripts are without prefix (e.g. `main.lua`) and all other folders are reachable via package.path (though the debug console says it has mixed / and...

Hey, Would it be possible to make a step by step video on how to install this ? Would love to use this, but instructions are not clear enough.

```lua require "luadebug" : start "@/Users/apple/func/typescripttolua_test/out/debug.sock" :event "wait" local co =coroutine.create(function() coroutine.yield() end) coroutine.resume(co) coroutine.resume(co) ```

你好,最近在Run File的时候(编辑窗口右上角那个功能),发现输出的内容跑到了vscode的终端页,由于终端中会默认打印出很多干扰项,看起来比较费劲,就在配置中将Debug Setting -> Console设置为了internalConsole,但是设置以后不管是调试控制台还是终端中都没有任何输出信息。 请问有没有什么解决方案呀? 还是等后续更新?

I have a lot of lua source files encoded in GB2312, and my OS locale is `zh-CN` (same with non-Unicode locale settings). I tried every setting combinations of "Console Coding"...