fix(keymap): point to proper `MappableCommand` instead of `Command` (#13214)

pull/13216/head
RoloEdits 2025-03-28 06:51:36 -07:00 committed by GitHub
parent 7929c0719d
commit 01fce51c45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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),*])
};
(