set working dir for editor

This commit is contained in:
Dr. Matthias Ratajczak
2023-01-10 14:13:46 +01:00
parent cdbe0669d3
commit 71a07d2da1
+1
View File
@@ -7,6 +7,7 @@ use crate::env::get_editor;
pub fn run_edit_command(files: &[PathBuf]) -> Result<ExitStatus> { pub fn run_edit_command(files: &[PathBuf]) -> Result<ExitStatus> {
let mut cmd = Command::new(get_editor()?); let mut cmd = Command::new(get_editor()?);
cmd.current_dir(&files[0]);
for f in files { for f in files {
cmd.arg(f.to_string_lossy().to_string()); cmd.arg(f.to_string_lossy().to_string());
} }