diff options
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts index 69b3382a..14387a89 100644 --- a/src/config.ts +++ b/src/config.ts @@ -95,6 +95,7 @@ interface SBConfig { actuallySubmitKeybind: Keybind; nextChapterKeybind: Keybind; previousChapterKeybind: Keybind; + closeSkipNoticeKeybind: Keybind; // What categories should be skipped categorySelections: CategorySelection[]; @@ -345,6 +346,7 @@ const syncDefaults = { actuallySubmitKeybind: { key: "'", ctrl: true }, nextChapterKeybind: { key: "ArrowRight", ctrl: true }, previousChapterKeybind: { key: "ArrowLeft", ctrl: true }, + closeSkipNoticeKeybind: { key: "Backspace" }, categorySelections: [{ name: "sponsor" as Category, |