Fix let_user_provide_content()
This commit is contained in:
parent
2b8bd86ce1
commit
7ac5111cde
1 changed files with 1 additions and 1 deletions
2
src/ui/external/editor.rs
vendored
2
src/ui/external/editor.rs
vendored
|
@ -20,7 +20,7 @@ pub fn let_user_provide_content(rt: &Runtime) -> Option<String> {
|
||||||
}
|
}
|
||||||
|
|
||||||
let output = {
|
let output = {
|
||||||
let mut cmd = Command::new(rt.editor());
|
let mut cmd = rt.editor();
|
||||||
cmd.arg(filepath);
|
cmd.arg(filepath);
|
||||||
debug!("cmd = {:?}", cmd);
|
debug!("cmd = {:?}", cmd);
|
||||||
cmd.spawn()
|
cmd.spawn()
|
||||||
|
|
Loading…
Reference in a new issue