mirror of https://github.com/helix-editor/helix
fix(keymap): point to proper `MappableCommand` instead of `Command` (#13214)
parent
7929c0719d
commit
01fce51c45
|
@ -90,7 +90,7 @@ macro_rules! keymap {
|
|||
};
|
||||
|
||||
(@trie [$($cmd:ident),* $(,)?]) => {
|
||||
$crate::keymap::KeyTrie::Sequence(vec![$($crate::commands::Command::$cmd),*])
|
||||
$crate::keymap::KeyTrie::Sequence(vec![$($crate::commands::MappableCommand::$cmd),*])
|
||||
};
|
||||
|
||||
(
|
||||
|
|
Loading…
Reference in New Issue