v.0.0.1 #1
Replies: 1 comment
|
At the moment, only setting breakpoints and viewing variables are working. To set or remove breakpoints, one must hold down at least one of the Example configurations [c]
debugger = "C:/WHATEVER_PATH/gdb.exe"
debugger_args = ["-i", "dap"]
mode = "io"
launch_args = '''{
"program": "C:/repos/nppdebugger/tests/debuggees/gdb/debugee_gcc.exe",
"cwd": "C:/repos/nppdebugger/tests/debuggees/gdb"
}'''
[go]
debugger = 'C:\WHATEVER_PATH\dlv.exe'
debugger_args = ["dap", "--listen=127.0.0.1:4711"]
mode = "tcp"
host = "127.0.0.1"
port = 4711
env = {PATH="C:/compilers/go;C:/compilers/go/bin", GOROOT="C:/compilers/go", GOPATH="C:/Users/Admin/go" }
launch_args = '''{
"program": "C:/repos/nppdebugger/tests/debuggees/go/main.go"
}'''
[python]
debugger = 'py.exe'
debugger_args = ["-m", "debugpy", "--listen", "5678", "--wait-for-client", "C:/repos/nppdebugger/tests/debuggees/python/test_main.py"]
mode = "tcp"
host = "127.0.0.1"
port = 5678
launch_args = '''{
"program": "C:/repos/nppdebugger/tests/debuggees/python/test_main.py"
}''' |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This is not for the faint of heart :)
This discussion was created from the release v.0.0.1.
All reactions