mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-02 02:17:44 +03:00
fix(keymap): point to proper MappableCommand
instead of Command
(#13214)
This commit is contained in:
parent
7929c0719d
commit
01fce51c45
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue