RBigData / remoter

Control a remote R session from your local R session.
Other
83 stars 11 forks source link

Delayed display + history command #58

Open mbahin opened 4 years ago

mbahin commented 4 years ago

Hi,

I'm now able to use your nice package to have Rstudio displayed locally but using the R of a remote server. Though I still have two things that could improve the comfort of usage and I don't know if I just missed something in the setup or if we can't do anything for that. 1) If some command, at some point, prints, I only have these outputs when the entire command ends. Ex: for (i in 0:5) { Sys.sleep(3); print("Hi") } only displays the five prints at the end. 2) When I press the up arrow to get the previous commands, I get the history from the R session before logging to remote R (so the first command in the history is "client(...)".

Cheers, Mathieu