Benoît Cortier
Benoît Cortier
I rebased on top of master.
> I'd be glad to introduce another command with this ability (`cd-to-file`, and `cdf`, maybe?) so that this other PR can do its thing with `cd`, if that's deemed a...
The use case is to build SSH web clients and SSH session web players. As you say, there is no way to use TCP sockets. That’s why the data transport...
Tasks may be spawned using [`spawn_local`](https://docs.rs/wasm-bindgen-futures/latest/wasm_bindgen_futures/fn.spawn_local.html) and sleeping can be implemented [on top of `setTimeout`](https://users.rust-lang.org/t/async-sleep-in-rust-wasm32/78218/2) or by using [the `gloo_timers` crate](https://docs.rs/gloo-timers/latest/gloo_timers/#timeouts-as-futures) (which basically provides a convenient `Future` wrapping `setTimeout`). We...
Good to know! I’ll let my colleagues knows so we can consider investing time into this once we get the bandwidth.
Hi @the-mikedavis FYI I was thinking about implementing this if it’s okay (I see you assigned yourself for #3263)
I’m going to daily drive this as well! > You can enable softwrap either using :set softwrap.enable true or by setting soft-wrap.enable = true in the [editor] section of your...
So far so good, it’s quite pleasant to work with multiple panes using soft-wrapped lines! One small bug I found when looking up references to the `authenticate` function:  The...
> What is the preferred way to do this? Change the existing pr, which would make the discussion about the name kinda pointless, or make a new one? I'm pretty...
Hi @adrianbenavides! > As a user, what I would expect is to read the `{current-date}.log` file as the current log file, and then `{current-date}.{n}.log` as the previous, archived, log files....