Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands/lsp.rs')
-rw-r--r--helix-term/src/commands/lsp.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs
index 4fffbb24..93ac2a84 100644
--- a/helix-term/src/commands/lsp.rs
+++ b/helix-term/src/commands/lsp.rs
@@ -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}")),
}
}
}