aboutsummaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs
index a952a23a..e8a4c5ee 100644
--- a/src/input/mod.rs
+++ b/src/input/mod.rs
@@ -4937,8 +4937,8 @@ fn make_binds_iter<'a>(
let mru_open_binds = mru.is_open().then(|| mru.opened_bindings(mods));
let mru_open_binds = mru_open_binds.into_iter().flatten();
- // MRU binds take precedence over general ones.
- mru_binds.chain(mru_open_binds).chain(general_binds)
+ // General binds take precedence over the MRU binds.
+ general_binds.chain(mru_binds).chain(mru_open_binds)
}
#[cfg(test)]