Charlie Groves
Charlie Groves
You can do this with `space ' down ret`, but this gets it down to `] '`. Feels nicer to me when going through a big set of global search...
This listens to focus change events from the terminal and writes all files when focus is lost. It's not ready to merge, but I had a couple questions that it'd...
This emits an [OSC 52 terminal code](https://terminalguide.namepad.de/seq/osc-52/) for copying into the system terminal if we don't find a local provider. That gets setting the local clipboard to work through SSH....
This adds bracketed paste support to fix https://github.com/helix-editor/helix/issues/2239. It's based on [this PR on crossterm](https://github.com/crossterm-rs/crossterm/pull/693), so that will need to land and be released before this can be merged. I...
When I have a file with lines that wrap multiple times and I edit a new file that doesn't have specific text on those lines, the text from the previous...
I have a single template that I render over and over again with different parameters in my program. It takes about half a second per render. I'm wondering if it'd...
### What is the issue? When I run a command using Tailscale's ssh, `XDG_RUNTIME_DIR` isn't set. When I run a command over ssh directly to the same server, it is....
Hugo 0.101 contains a fix for https://github.com/gohugoio/hugo/issues/9994, which makes relURL starting with / absolute to the baseURL. For example, if your baseURL is www.example.com/someSubdirectory, the css link would be /css/style.css...
It seems like we get media play/pause/mute/etc keys despite not emitting DISAMBIGUATE_ESCAPE_CODES(#4125). Make crossterm::event::KeyCode a TryInto for KeyCode instead of Into to let us ignore keys we don't care about.
Previously it was using display name. The difference is for projects nested in folders. getDisplayName returns the last segment there, whereas getFullDisplayName includes all the parent folders as well, separated...