Manuel Hentschel

Results 60 comments of Manuel Hentschel

> Unfortunately, I still can't get the vsix file I built to install correctly [...] Have you tried with the vsix file from [here](https://github.com/REditorSupport/vscode-R/actions/runs/1290942928)?

I can 100% understand where you're coming from, but I'm not quite sure what the best approach would be here. E.g. when a new R version is released which I...

Sounds good! Note that on windows `;` can be part of a path, but e.g. requiring such paths to be quoted should work fine. I'd also suggest implementing the same...

> If multiple paths are specified in `r.path.xxx`, then starting background processes (e.g. R help, language server) should prompt? Yes, once per session. Normally, people will have only one path...

I tried to reproduce the issue and got the following behaviour: * Running `help(package = "mypackage")` opens the "old" help viewer, which shows the unmodified help page as served by...

Thanks for opening this issue and the detailed info. This is the intended behaviour. The documentation in `configuration.md` was outdated, sorry about that. https://github.com/ManuelHentschel/VSCode-R-Debugger/commit/eb4ebeb6666d28bd653f3569630f1b1e3ff1ff98 updates the documentation accordingly.

From personal experience, this extension does not work well with `httpgd` + `vscode-R`. In my personal .Rprofile I have therefore disabled httpgd in debug sessions: ```r if(Sys.getenv('VSCODE_DEBUG_SESSION')=='1'){ options(vsc.plot = FALSE)...

I looked around and probably found the same discussions/answers as you -.- An idea to make the annotations look like comments for most languages might be to use a list...

It would be great if we found a clean way to solve the control-flow problems mentioned here and in https://github.com/dgkf/debugadapter/issues/4! Considering the difficulty of this task, I'm not sure how...

Using https://github.com/posit-dev/ark might be a solution for this. For now they only support the positron front-end, but are planning to support others in the future.