actboy168 / lua-debug

Lua Debug Adapter for Visual Studio Code
MIT License
439 stars 95 forks source link

如何使用1.7.0? #67

Closed supemeko closed 5 years ago

supemeko commented 5 years ago

运行以后,程序似乎闪退了

actboy168 commented 5 years ago

你的launch.json是什么

supemeko commented 5 years ago
{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "launch",
            "type": "lua",
            "request": "launch",
            "stopOnEntry": true,
            "runtimeArgs": "${workspaceFolder}/main.lua",
            "consoleCoding": "utf8"
        }
    ]
}
actboy168 commented 5 years ago

你的launch.json有问题,runtimeExecutableruntimeArgs应该成对使用,或者使用program。readme对此有详细的说明。