diff options
author | Blaž Hrastnik | 2021-03-02 09:25:40 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-02 09:29:15 +0000 |
commit | bd0f6c1dfc2222c828f279c7b60fd20045d9a80a (patch) | |
tree | 306732f5f9fbae65b8b06414db9b1055b93cdd5d /helix-term/src/ui/mod.rs | |
parent | 0b85c16be91d9326876b2e4a1ae6bdc1381d700d (diff) |
clippy lint
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r-- | helix-term/src/ui/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 4fbdd550..463ac368 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -194,7 +194,7 @@ pub mod completers { .collect(); matches.sort_unstable_by_key(|(_file, score)| Reverse(*score)); - files = matches.into_iter().map(|(file, _)| file.into()).collect(); + files = matches.into_iter().map(|(file, _)| file).collect(); // TODO: complete to longest common match } |