Results 1049 comments of Randy Lai

How do think the idea of generating settings like ``` 'terminal_color_0' : '#000000', 'terminal_color_1' : '#ff8787', 'terminal_color_2' : '#87d75f', 'terminal_color_3' : '#ffd75f', 'terminal_color_4' : '#87afff', 'terminal_color_5' : '#af87ff', 'terminal_color_6' :...

If we only do it once until Sublime Text restarts, it should okay.

I think it should be relatively easier in `radian` to control the flow because we have python entry point. We could basically open a socket connection for other programs to...

Perhaps let me explain how radian works. First, I assume that you understand how a REPL works R: read from user input E: evaluate the input P: print the output...

I think it is very similar to what you have done in vscDebugger. However, you did it in R which also means that the tcp server is interfering the R...

Well, it seems that I might have misunderstood how DAP works. How do you handle the browse prompt in attach mode in the current implementation? Edit: just saw https://github.com/ManuelHentschel/vscDebugger/pull/141 and...

I have pushed a [branch](https://github.com/randy3k/radian/tree/callback) to radian. It allows you to define custom read console callback. I think it should fit your use case. ```bash pip install git+https://github.com/randy3k/radian.git@callback ``` Simple...

Perhaps we should create a new package says for example `dap` under REditorSupport and start working a fresh and editor-agnostic implementation of dap there. It is in my opinion easier...

Just for the record, ~~R will reset `LD_LIBRARY_PATH` when it is launched. Instead~~, you would need to set `R_LD_LIBRARY_PATH`. UPDATE: setting `LD_LIBRARY_PATH` should also work, but it is better to...

@phaverty Thanks for your words (actually I am one of the main maintainers of RCall). Although being a developer of RCall, I do find that it is a bit awkward...