diff options
author | Ajay <[email protected]> | 2023-12-22 11:48:21 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2023-12-22 11:48:21 -0500 |
commit | 8496e32cfefddda85605c02ad8e241e559c12041 (patch) | |
tree | 463802ea02c9c16591ab7bfe38ae5d6ab773bb78 /src/config.ts | |
parent | 157216148c4d57a8dd19c3556f4343741b7f5534 (diff) | |
download | SponsorBlock-8496e32cfefddda85605c02ad8e241e559c12041.tar.gz SponsorBlock-8496e32cfefddda85605c02ad8e241e559c12041.zip |
Add keybind for closing skip notices
Fixes #1915
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, |