summaryrefslogtreecommitdiffstats
path: root/src/commands/zoxide.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/zoxide.rs')
-rw-r--r--src/commands/zoxide.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/zoxide.rs b/src/commands/zoxide.rs
index 222bb9d..a065117 100644
--- a/src/commands/zoxide.rs
+++ b/src/commands/zoxide.rs
@@ -49,7 +49,7 @@ pub fn zoxide_query_interactive(context: &mut AppContext, backend: &mut AppBacke
.spawn()?;
let zoxide_output = zoxide_process.wait_with_output()?;
- backend.terminal_restore()?;
+ backend.terminal_restore(context.config_ref().mouse_support)?;
if zoxide_output.status.success() {
if let Ok(zoxide_str) = std::str::from_utf8(&zoxide_output.stdout) {