You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix/helix-term
Michael Davis 7cbdff4df8
Remove unnecessary Vec collections for Registers::write callsites
These callsites either used `vec![..]` instead of a static slice `[..]`
or, worse, collected into a Vec unnecessarily. The refactor in the
parent commit to `IntoIterator<Item = String>` for `Registers::write`
makes these Vecs unnecessary as the values are appended to each register
via `VecDeque::extend`.

We could take this change further by returning the number of values we
yanked in `Registers::write`. However this would only remove the need
to collect from one callsite, so this further refactor is deferred until
it would more useful in the future.
4 months ago
..
src Remove unnecessary Vec collections for Registers::write callsites 4 months ago
tests refactor(commands): trim end of `pipe`-like output (#10952) 4 months ago
.gitignore Initial import. 5 years ago
Cargo.toml Implement Error for InjectorShutdown 4 months ago
build.rs Add icon to Windows executable (#9104) 10 months ago