Ensure that identical keymaps stay in sync (#1056)
Space mode and view mode are duplicated on two different keybinds, and they tend to get out of sync by contributers forgetting to update both of them. This commit adds a test that explicitly checks that they are identical. Prevents issues like #1050.
This commit is contained in:
parent
f9e9efb3ec
commit
e863e3b62d
1 changed files with 16 additions and 0 deletions
|
@ -802,4 +802,20 @@ mod tests {
|
|||
let node = keymap.root().search(&[crate::key!(' ')]).unwrap();
|
||||
assert!(!node.node().unwrap().order().is_empty())
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn aliased_modes_are_same_in_default_keymap() {
|
||||
let keymaps = Keymaps::default();
|
||||
let root = keymaps.get(&Mode::Normal).unwrap().root();
|
||||
assert_eq!(
|
||||
root.search(&[key!(' '), key!('w')]).unwrap(),
|
||||
root.search(&["C-w".parse::<KeyEvent>().unwrap()]).unwrap(),
|
||||
"Mismatch for window mode on `Space-w` and `Ctrl-w`"
|
||||
);
|
||||
assert_eq!(
|
||||
root.search(&[key!('z')]).unwrap(),
|
||||
root.search(&[key!('Z')]).unwrap(),
|
||||
"Mismatch for view mode on `z` and `Z`"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue