Fix keybind types

This commit is contained in:
Leftas
2024-05-19 21:49:58 +03:00
parent b96fc643b4
commit dded401eda

View File

@@ -39,10 +39,10 @@ void easymotionActionDispatch(std::string args)
void addEasyMotionKeybinds()
{
g_pKeybindManager->addKeybind(SKeybind{"escape", 0, 0, 0, "easymotionexit", "", 0, "__easymotionsubmap__", 0, 0, 0, 0, 0, 0});
g_pKeybindManager->addKeybind(SKeybind{"escape", {}, 0, 0, 0, {}, "easymotionexit", "", 0, "__easymotionsubmap__", 0, 0, 0, 0, 0, 0, 0});
//catchall
g_pKeybindManager->addKeybind(SKeybind{"", 0, 1, 0, "", "", 0, "__easymotionsubmap__", 0, 0, 0, 0, 0, 0});
g_pKeybindManager->addKeybind(SKeybind{"", {}, 0, 1, 0, {}, "", "", 0, "__easymotionsubmap__", 0, 0, 0, 0, 0, 0, 0});
}