From 8ee102b3ea0ec05e386c889e5bd4a9610cb6a52e Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 29 Jan 2026 15:59:34 -0600 Subject: fix(transcription): add T keybinding to dirvish-mode-map Dirvish uses its own keymap rather than inheriting from dired-mode-map, so the transcription keybinding needs to be explicitly added. --- modules/transcription-config.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'modules/transcription-config.el') diff --git a/modules/transcription-config.el b/modules/transcription-config.el index 5349ade0..8e3eb798 100644 --- a/modules/transcription-config.el +++ b/modules/transcription-config.el @@ -369,7 +369,9 @@ Prompts with completing-read to select from available backends." (with-eval-after-load 'dired (define-key dired-mode-map (kbd "T") #'cj/transcribe-audio-at-point)) -;; Dirvish inherits dired-mode-map, so T works automatically +;; Dirvish uses its own keymap, so bind T there too +(with-eval-after-load 'dirvish + (define-key dirvish-mode-map (kbd "T") #'cj/transcribe-audio-at-point)) ;; ------------------------------- Global Keybindings -------------------------- -- cgit v1.2.3