aboutsummaryrefslogtreecommitdiffstats
path: root/src/edit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit.rs')
-rw-r--r--src/edit.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/edit.rs b/src/edit.rs
index 1a831a7..8f4e534 100644
--- a/src/edit.rs
+++ b/src/edit.rs
@@ -30,6 +30,7 @@ pub fn edit(contents: &str, help: &str) -> Result<String> {
let editor = std::path::Path::new(&editor);
let mut editor_args = vec![];
+ #[allow(clippy::single_match)] // more to come
match editor.file_name() {
Some(editor) => match editor.to_str() {
Some("vim" | "nvim") => {