summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-29 15:59:34 -0600
committerCraig Jennings <c@cjennings.net>2026-01-29 15:59:34 -0600
commit8c103738d850ed2d0b185e025ea0c4a242f71de6 (patch)
treef6a20d21c3c061fc60ed2f4d05ed215338df09db
parente0c2e582b39b24915224ee0f5eae36148dfe4d12 (diff)
downloaddotemacs-8c103738d850ed2d0b185e025ea0c4a242f71de6.tar.gz
dotemacs-8c103738d850ed2d0b185e025ea0c4a242f71de6.zip
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.
-rw-r--r--modules/transcription-config.el4
1 files changed, 3 insertions, 1 deletions
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 --------------------------