summaryrefslogtreecommitdiffstats
path: root/src/commands/open_file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/open_file.rs')
-rw-r--r--src/commands/open_file.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/commands/open_file.rs b/src/commands/open_file.rs
index 419cefe..bb33c85 100644
--- a/src/commands/open_file.rs
+++ b/src/commands/open_file.rs
@@ -7,7 +7,6 @@ use crate::error::{JoshutoError, JoshutoErrorKind, JoshutoResult};
use crate::history::DirectoryHistory;
use crate::textfield::JoshutoTextField;
use crate::ui;
-use crate::unix;
use crate::window;
use crate::window::JoshutoView;
@@ -191,10 +190,9 @@ impl OpenFileWith {
let command = String::from(s);
let args = args_iter.map(String::from).collect();
let entry = JoshutoMimetypeEntry {
- id: 0,
command,
args,
- fork: true,
+ fork: false,
silent: false,
confirm_exit: true,
};