summaryrefslogtreecommitdiffstats
path: root/src/commands/fzf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fzf.rs')
-rw-r--r--src/commands/fzf.rs15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/commands/fzf.rs b/src/commands/fzf.rs
index 8aeaa1b..9c60c54 100644
--- a/src/commands/fzf.rs
+++ b/src/commands/fzf.rs
@@ -25,7 +25,7 @@ pub fn fzf(
CaseSensitivity::Smart => {}
}
- fzf_impl(backend, items, args)
+ fzf_impl(context, backend, items, args)
}
pub fn fzf_multi(
@@ -47,10 +47,15 @@ pub fn fzf_multi(
}
args.push("-m".to_owned());
- fzf_impl(backend, items, args)
+ fzf_impl(context, backend, items, args)
}
-fn fzf_impl(backend: &mut AppBackend, items: Vec<String>, args: Vec<String>) -> AppResult<String> {
+fn fzf_impl(
+ context: &mut AppContext,
+ backend: &mut AppBackend,
+ items: Vec<String>,
+ args: Vec<String>,
+) -> AppResult<String> {
backend.terminal_drop();
let mut cmd = Command::new("fzf");
@@ -63,7 +68,7 @@ fn fzf_impl(backend: &mut AppBackend, items: Vec<String>, args: Vec<String>) ->
let mut fzf = match cmd.spawn() {
Ok(child) => child,
Err(e) => {
- backend.terminal_restore()?;
+ backend.terminal_restore(context.config_ref().mouse_support)?;
return Err(AppError::from(e));
}
};
@@ -77,7 +82,7 @@ fn fzf_impl(backend: &mut AppBackend, items: Vec<String>, args: Vec<String>) ->
}
let fzf_output = fzf.wait_with_output();
- backend.terminal_restore()?;
+ backend.terminal_restore(context.config_ref().mouse_support)?;
if let Ok(output) = fzf_output {
if output.status.success() {