summaryrefslogtreecommitdiffstats
path: root/src/verb/builtin.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2021-05-18 16:34:24 +0200
committerCanop <cano.petrole@gmail.com>2021-05-18 16:34:24 +0200
commit92395cbef4d9cf5b28cb60cebd1fc7e019aa2a5e (patch)
treea367a7edd9282b64f6a24a365403711ed8a25137 /src/verb/builtin.rs
parent372213fa483f1b6e92b65575882d40f48480b5e4 (diff)
add support for backtab key
Diffstat (limited to 'src/verb/builtin.rs')
-rw-r--r--src/verb/builtin.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/verb/builtin.rs b/src/verb/builtin.rs
index a2b0128..1b7da90 100644
--- a/src/verb/builtin.rs
+++ b/src/verb/builtin.rs
@@ -77,7 +77,6 @@ pub fn builtin_verbs() -> Vec<Verb> {
internal(preview_binary),
internal(close_panel_ok),
internal(close_panel_cancel)
- .with_key(BACK_TAB)
.with_control_key('w'),
external(
"copy {newpath:path-from-parent}",
@@ -142,6 +141,8 @@ pub fn builtin_verbs() -> Vec<Verb> {
.with_char_key(' ')
.with_char_key(':')
.with_char_key('/'),
+ internal(previous_match)
+ .with_key(BACK_TAB),
internal(next_match)
.with_key(TAB),
internal(no_sort)