mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Fix new clippy lints (#5892)
This commit is contained in:
parent
9d73a0d112
commit
8a3ec443f1
18 changed files with 32 additions and 37 deletions
|
@ -427,7 +427,7 @@ impl TextObjectQuery {
|
|||
let nodes: Vec<_> = mat
|
||||
.captures
|
||||
.iter()
|
||||
.filter_map(|cap| (cap.index == capture_idx).then(|| cap.node))
|
||||
.filter_map(|cap| (cap.index == capture_idx).then_some(cap.node))
|
||||
.collect();
|
||||
|
||||
if nodes.len() > 1 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue