feat(shortcuts): make clipboard-video-append shortcut configurable (#158)

This commit is contained in:
2026-07-11 23:36:44 -07:00
committed by GitHub
parent 8797719a09
commit 6ab3d823a4
26 changed files with 87 additions and 18 deletions
+1
View File
@@ -127,6 +127,7 @@ export interface ShortcutsConfig {
openControllerDebug?: string | null;
toggleSubtitleSidebar?: string | null;
toggleNotificationHistory?: string | null;
appendClipboardVideoToQueue?: string | null;
}
export interface Config {
+1
View File
@@ -14,6 +14,7 @@ export type SessionActionId =
| 'toggleSecondarySub'
| 'toggleSubtitleSidebar'
| 'toggleNotificationHistory'
| 'appendClipboardVideoToQueue'
| 'markAudioCard'
| 'openRuntimeOptions'
| 'openSessionHelp'