Add hotkeys for skipping to next and previous chapter

This commit is contained in:
Ajay
2022-07-10 01:58:39 -04:00
parent d7176a9c97
commit 6cb4fac041
4 changed files with 63 additions and 3 deletions

View File

@@ -71,6 +71,8 @@ interface SBConfig {
skipKeybind: Keybind,
startSponsorKeybind: Keybind,
submitKeybind: Keybind,
nextChapterKeybind: Keybind,
previousChapterKeybind: Keybind,
// What categories should be skipped
categorySelections: CategorySelection[],
@@ -191,6 +193,8 @@ const Config: SBObject = {
skipKeybind: {key: "Enter"},
startSponsorKeybind: {key: ";"},
submitKeybind: {key: "'"},
nextChapterKeybind: {key: "]"},
previousChapterKeybind: {key: "["},
categorySelections: [{
name: "sponsor" as Category,