summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commands/zoxide.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/zoxide.rs b/src/commands/zoxide.rs
index 86cc956..1abe9f2 100644
--- a/src/commands/zoxide.rs
+++ b/src/commands/zoxide.rs
@@ -50,7 +50,6 @@ pub fn zoxide_query_interactive(
.arg("-i")
.arg("--")
.stdin(Stdio::piped())
- .stderr(Stdio::piped())
.stdout(Stdio::piped())
.spawn()?;
let zoxide_output = zoxide_process.wait_with_output()?;
@@ -65,7 +64,7 @@ pub fn zoxide_query_interactive(
let path = Path::new(zoxide_path);
context
.message_queue_mut()
- .push_info(format!("z {:?}", zoxide_path));
+ .push_info(format!("zi {:?}", zoxide_path));
change_directory::change_directory(context, &path)?;
}
} else {