actboy168 / lua-debug

Lua Debug Adapter for Visual Studio Code
MIT License
435 stars 94 forks source link

error: `inject` not supported `integratedTerminal` #179

Closed stax76 closed 2 years ago

stax76 commented 2 years ago

With v1.58 I get the error:

`inject` not supported `integratedTerminal`

No problem with previous v1.57

My launch.json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lua",
            "request": "launch",
            "name": "launch",
            "runtimeExecutable": "D:/Software/Development/MSYS2/mingw64/bin/mpv.exe",
            "runtimeArgs": ["--quiet", "--script=${file}", "D:/Samples/LG New York HDR UHD 4K Demo.mkv"],
            "stopOnEntry": false,
            "luaVersion": "5.1"
        }
    ]
}