Max Stoumen

Results 50 issues of Max Stoumen

Addresses #153. The idea is to first deeply sort the jsx and lsp trees, then merge the two by iterating through the symbols in order of symbol start position, deeply...

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...

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

Closes . This PR implements the feature in the exact way described by @emilk. Library consumers are expected to set z-index using `ui.with_z(...)`. I've added an example to `examples` demonstrating...

## What problem does this solve or what need does it fill? This issue continues discussion from #511. In that PR, remove behavior sets the children's parents to `None` as...

Closes #15 A lot of the old configuration is now deprecated/legacy. Check out the docs/README for new configuration options. A new compile command is also needed for `vscode-js-debug`: ``` npm...

The `vscode-js-debug` recently switched folder structure from building to `out` to building to `dist`. This breaks the codebase since I (in retrospect, rather stupidly) hard-coded the `out/src/vsDebugServer.js` path. Probably, the...

Allow running just `runme server` to spawn server on port `7863`. Idea by @degrammer

Supporting windows shells: - Provide `shell_behavior` in execute request, which will be an enum to specify the desired shell behavior. - If this is unspecified, we try to determine the...

enhancement