summaryrefslogtreecommitdiffstats
path: root/src/key_command
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2022-05-26 19:52:52 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2022-05-26 19:52:52 -0400
commit34170bbec4a67dfc3c85ccf890ea0189fe2728ae (patch)
tree92178294231b939ff879ea4f13243d07800e3e1d /src/key_command
parent3181c6d61b5a71c7e408263e85c4d9b67463aa5e (diff)
parent24c21dc9aed80c61ed9bdb72d9597cfbe66fcfaf (diff)
Merge branch 'main' of github.com:kamiyaa/joshuto
Diffstat (limited to 'src/key_command')
-rw-r--r--src/key_command/impl_appexecute.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/key_command/impl_appexecute.rs b/src/key_command/impl_appexecute.rs
index 993d3f8..bf2b9fc 100644
--- a/src/key_command/impl_appexecute.rs
+++ b/src/key_command/impl_appexecute.rs
@@ -106,7 +106,7 @@ impl AppExecute for Command {
Self::SearchFzf => search_fzf::search_fzf(context, backend),
Self::SubdirFzf => subdir_fzf::subdir_fzf(context, backend),
- Self::Zoxide(arg) => zoxide::zoxide_query(context, &arg),
+ Self::Zoxide(arg) => zoxide::zoxide_query(context, arg),
Self::ZoxideInteractive => zoxide::zoxide_query_interactive(context, backend),
}
}