RemoteREPL.jl icon indicating copy to clipboard operation
RemoteREPL.jl copied to clipboard

Connect a REPL to a remote Julia process

Results 31 RemoteREPL.jl issues
Sort by recently updated
recently updated
newest added

Would be nice if we would have observables that track the remote value and are automatically updated when the value on the remote is changed. Let me know if that...

```julia @remote f() = nothing ``` This gives me "UndefVarError: `#f` not defined" This works fine ```julia f() = nothing @remote f() = nothing ``` so it seems like there...

Redesign for https://github.com/c42f/RemoteREPL.jl/pull/45 # Novelties and summary In #45 we discussed that it would be better to use the underlying protocol to change the module. It became clear that this...

Is it possible to update `Project.toml' compat for OpenSSH_jll to the latest version? > [compat] > OpenSSH_jll = "9.3"

I mentioned in a comment on [this issue](https://github.com/c42f/RemoteREPL.jl/issues/50) that I had some latency issues when using RemoteREPL for my Raspberry Pi. But I just checked using a local host, so...

Closes https://github.com/c42f/RemoteREPL.jl/issues/54. This PR adds a single line to disable nagles algorithm, using the `Sockets.nagle` function. This is done on the client side, inside the `setup_connection!` function. On my system,...

This PR adds a troubleshooting section, as mentioned in my final comment in https://github.com/c42f/RemoteREPL.jl/issues/47. This would close https://github.com/c42f/RemoteREPL.jl/issues/47.

I've got a question I would like to ask: Could this project be used as a way to directly add interactivity to notebooks on VS Code while the Julia extension...

I have tried to use the "@remote ex" syntax hard-coded into script loaded via a .jl include in the remoterepl session but that generates an error. Is there an equivalent...