mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
chore: clean up clippy lints (#11377)
Using clippy 1.80.0. Also cleans up some that were windows only.
This commit is contained in:
parent
3fcf168c33
commit
86aecc96a1
13 changed files with 46 additions and 41 deletions
|
@ -34,7 +34,7 @@ use crate::{
|
|||
use std::{
|
||||
cmp::Ordering,
|
||||
collections::{BTreeMap, HashSet},
|
||||
fmt::Write,
|
||||
fmt::{Display, Write},
|
||||
future::Future,
|
||||
path::Path,
|
||||
};
|
||||
|
@ -832,13 +832,13 @@ pub enum ApplyEditErrorKind {
|
|||
// InvalidEdit,
|
||||
}
|
||||
|
||||
impl ToString for ApplyEditErrorKind {
|
||||
fn to_string(&self) -> String {
|
||||
impl Display for ApplyEditErrorKind {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self {
|
||||
ApplyEditErrorKind::DocumentChanged => "document has changed".to_string(),
|
||||
ApplyEditErrorKind::FileNotFound => "file not found".to_string(),
|
||||
ApplyEditErrorKind::UnknownURISchema => "URI schema not supported".to_string(),
|
||||
ApplyEditErrorKind::IoError(err) => err.to_string(),
|
||||
ApplyEditErrorKind::DocumentChanged => f.write_str("document has changed"),
|
||||
ApplyEditErrorKind::FileNotFound => f.write_str("file not found"),
|
||||
ApplyEditErrorKind::UnknownURISchema => f.write_str("URI schema not supported"),
|
||||
ApplyEditErrorKind::IoError(err) => f.write_str(&format!("{err}")),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue