From 0d4c390b9f82eb21b7a0c67aeec2ca25cd6e49c5 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 5 Jan 2016 16:10:09 +0100 Subject: [PATCH] Remove unused import --- src/ui/external/editor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/external/editor.rs b/src/ui/external/editor.rs index 41a83ccf..3091be89 100644 --- a/src/ui/external/editor.rs +++ b/src/ui/external/editor.rs @@ -7,7 +7,6 @@ use runtime::Runtime; pub fn let_user_provide_content(rt: &Runtime) -> Option { use std::io::Read; use std::fs::File; - use std::process::Command; let filepath = "/tmp/imag-tmp.md"; let file_created = File::create(filepath)