diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-29 15:59:34 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-29 15:59:34 -0600 |
| commit | cfacf2c7bf13e96108b104ef78e41c8e7027521c (patch) | |
| tree | c300622e708701153e396a0a1b13cf4b66cf2977 /modules | |
| parent | 5a44becef35f522e6c0ddc1a252ec2ff438bcaab (diff) | |
| download | dotemacs-cfacf2c7bf13e96108b104ef78e41c8e7027521c.tar.gz dotemacs-cfacf2c7bf13e96108b104ef78e41c8e7027521c.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.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/transcription-config.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/transcription-config.el b/modules/transcription-config.el index 5349ade02..8e3eb7985 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 -------------------------- |
