Add keybind for submitting instead of just using the submission menu

This commit is contained in:
Ajay
2023-12-22 11:41:35 -05:00
parent 5ac19eecd4
commit 157216148c
6 changed files with 39 additions and 10 deletions

View File

@@ -92,6 +92,7 @@ interface SBConfig {
skipToHighlightKeybind: Keybind;
startSponsorKeybind: Keybind;
submitKeybind: Keybind;
actuallySubmitKeybind: Keybind;
nextChapterKeybind: Keybind;
previousChapterKeybind: Keybind;
@@ -341,6 +342,7 @@ const syncDefaults = {
skipToHighlightKeybind: { key: "Enter", ctrl: true },
startSponsorKeybind: { key: ";" },
submitKeybind: { key: "'" },
actuallySubmitKeybind: { key: "'", ctrl: true },
nextChapterKeybind: { key: "ArrowRight", ctrl: true },
previousChapterKeybind: { key: "ArrowLeft", ctrl: true },