nvim-dap-vscode-js icon indicating copy to clipboard operation
nvim-dap-vscode-js copied to clipboard

nvim-dap adapter for vscode-js-debug

Results 42 nvim-dap-vscode-js issues
Sort by recently updated
recently updated
newest added

i have vscode-js-debug installed in my home directory. I ran ` npm install --legacy-peer-deps && npm run compile` without any issues. 1. i set a break up in my code....

I have installed dap, dapui and this in my neovim config. However im finding it difficult getting this working: 1. i run my api using `ts-node-dev --inspect --respawn -r tsconfig-paths/register...

Been trying to get this working by spinning up a `node` process with the `--inspect-brk` flag. ``` Debugger listening on ws://127.0.0.1:9229/133fb593-50c7-4e71-b9fb-7269906ca972 For help, see: https://nodejs.org/en/docs/inspector ``` I noticed that when...

The DAP spec has officially added support for multi-session debug adapters - https://github.com/microsoft/debug-adapter-protocol/pull/344 🎉 🎉 🎉 According to @connor4312 in https://github.com/microsoft/vscode-js-debug/issues/902#issuecomment-1304592234: > Fyi this will soon be compliant with the...

Hey! First of all thx for your work. For me for some reasons breakpoints do not work when i use this adapter(they work with node2 adapter but some other stuff...

As of July 2022, the `pwa-node` adapter became the default node adapter and is now available under the `node` type by default. In this PR, I've updated the config filter...

Hi 👋 , First of all, thanks for this nice plugin, it works very well, also in combination with my plugin [jester](https://github.com/David-Kunz/jester). One thing that bothers me a bit is...

I'm trying to debug with worker threads. When it hits a breakpoint (DapStopped sign shows up), I can't continue, step over, inspect a variable, etc. It acts as it doesn't...

Under certain circumstances, the `stackTrace` callback in `nvim-dap` fails to launch. Currently, this bug has only been produced by @entropitor, and may be related to jest configuration/version. See #2 for...

Unlike many other dap based adapters, vscode-js-debug always communicates breakpoints as initially unverified (rejected), until this is changed layer with the `breakpoint` event. This is in order to support multiple...

enhancement
nvim-dap