feat: Added evaluate pattern shortcut

This commit is contained in:
WerWolv
2023-09-24 18:17:58 +02:00
parent f79e2df11a
commit 181a7c5b3d

View File

@@ -1311,6 +1311,10 @@ namespace hex::plugin::builtin {
this->m_textEditor.SetBreakpoints(breakpoints);
});
ShortcutManager::addGlobalShortcut(Keys::F5 + AllowWhileTyping, [this] {
this->m_triggerAutoEvaluate = true;
});
}
}