Change default Paste Last Transcription shortcut to ⌘⌥V (Command+Option+V)

This commit is contained in:
Beingpax 2025-08-12 10:56:03 +05:45
parent 1b4f09731b
commit 3304680797

View File

@ -122,7 +122,7 @@ class HotkeyManager: ObservableObject {
self.miniRecorderShortcutManager = MiniRecorderShortcutManager(whisperState: whisperState)
if KeyboardShortcuts.getShortcut(for: .pasteLastTranscription) == nil {
let defaultPasteShortcut = KeyboardShortcuts.Shortcut(.v, modifiers: [.control])
let defaultPasteShortcut = KeyboardShortcuts.Shortcut(.v, modifiers: [.command, .option])
KeyboardShortcuts.setShortcut(defaultPasteShortcut, for: .pasteLastTranscription)
}