Skip to content

feat: support multiline cell editing #38

feat: support multiline cell editing

feat: support multiline cell editing #38

Triggered via push June 15, 2026 16:15
Status Success
Total duration 1m 43s
Artifacts

ci.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

1 warning
consider using `sort_by_key`: src/model/recent.rs#L85
warning: consider using `sort_by_key` --> src/model/recent.rs:85:5 | 85 | items.sort_by(|a, b| b.opened_at.cmp(&a.opened_at)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#unnecessary_sort_by = note: `#[warn(clippy::unnecessary_sort_by)]` on by default help: try | 85 - items.sort_by(|a, b| b.opened_at.cmp(&a.opened_at)); 85 + items.sort_by_key(|b| std::cmp::Reverse(b.opened_at)); |