summaryrefslogtreecommitdiffstats
path: root/src/key_command/impl_comment.rs
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2022-05-03 15:21:22 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2022-05-03 15:26:44 -0400
commit7ad3eb1823556107cd412bb25d4f8e95931354e0 (patch)
treef2ae137a9b1aae2777d4d38181b36581993c6aca /src/key_command/impl_comment.rs
parent9cc4f10fdb3e31723289892be5929ccd0a1c48d7 (diff)
add initial support for zoxide
Diffstat (limited to 'src/key_command/impl_comment.rs')
-rw-r--r--src/key_command/impl_comment.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/key_command/impl_comment.rs b/src/key_command/impl_comment.rs
index b52e3a2..dbc639a 100644
--- a/src/key_command/impl_comment.rs
+++ b/src/key_command/impl_comment.rs
@@ -72,12 +72,9 @@ impl CommandComment for Command {
Self::SearchString(_) => "Search",
Self::SearchIncremental(_) => "Search as you type",
Self::SearchGlob(_) => "Search with globbing",
- Self::SearchFzf => "Search via fzf",
Self::SearchNext => "Next search entry",
Self::SearchPrev => "Previous search entry",
- Self::SubdirFzf => "Switch to a child directory via fzf",
-
Self::SelectFiles(_, _) => "Select file",
Self::SetMode => "Set file permissions",
Self::SubProcess(_, false) => "Run a shell command",
@@ -100,6 +97,11 @@ impl CommandComment for Command {
Self::TabSwitch(_) => "Swith to the next tab",
Self::TabSwitchIndex(_) => "Swith to a given tab",
Self::Help => "Open this help page",
+
+ Self::SearchFzf => "Search via fzf",
+ Self::SubdirFzf => "Switch to a child directory via fzf",
+ Self::Zoxide(_) => "Zoxide",
+ Self::ZoxideInteractive => "Zoxide interactive",
}
}
}