Closed timsofteng closed 1 month ago
Please read the functions docs.
status()
returns a string, so you'd have to print it or something. The intention behind it is to include it in the statusline
list_breakpoints()
adds the breakpoints to the quickfix list, but it doesn't open it automatically.
Debug adapter definition and debug configuration
Debug adapter version
js-debug-adapter 1.94.0
Steps to Reproduce
function logMessage() { if (count < 10) { count++; console.log("count", count); setTimeout(logMessage, 1000); } }
logMessage();