From 330468079739a5727e6108c9407bf359ecdf3500 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Tue, 12 Aug 2025 10:56:03 +0545 Subject: [PATCH] =?UTF-8?q?Change=20default=20Paste=20Last=20Transcription?= =?UTF-8?q?=20shortcut=20to=20=E2=8C=98=E2=8C=A5V=20(Command+Option+V)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VoiceInk/HotkeyManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/HotkeyManager.swift b/VoiceInk/HotkeyManager.swift index 63834f1..4bf891c 100644 --- a/VoiceInk/HotkeyManager.swift +++ b/VoiceInk/HotkeyManager.swift @@ -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) }