diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-14 10:47:08 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-14 10:47:08 -0500 |
| commit | c0ddf4cf68cb2cdbe1d1758a9da1080d081058b9 (patch) | |
| tree | a5fff8cb6eaa33f87b35b8fdb2e03699fd03646c /tests/test-telega-config.el | |
| parent | fcdea7f0fcc20b1980ee0ee3fc0ba6159c0cf86e (diff) | |
| download | dotemacs-c0ddf4cf68cb2cdbe1d1758a9da1080d081058b9.tar.gz dotemacs-c0ddf4cf68cb2cdbe1d1758a9da1080d081058b9.zip | |
refactor: clear transcription C-; T menu, move telega launcher to C-; T
The transcription menu wasn't earning its top-level keymap slot --
the commands (transcribe-audio, switch-backend, view-transcriptions,
kill-transcription) are run rarely enough that `M-x' is fine. Drop
the `cj/transcribe-map' keymap, its `(keymap-set cj/custom-keymap
"T" ...)' binding, and the which-key labels. Commands stay
callable by name.
That frees `C-; T' for telega, where the mnemonic actually fits.
Move the launcher from `C-; G' to `C-; T'. Update the
which-key label, the module commentary, and the keymap-binding
test assertion. The dashboard `g' single-letter binding stays put
-- `t' there is vterm, so dashboard letters and the global
`C-;' prefix don't share a key space anyway.
Diffstat (limited to 'tests/test-telega-config.el')
| -rw-r--r-- | tests/test-telega-config.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/test-telega-config.el b/tests/test-telega-config.el index c642d1f6..d8aaeb4d 100644 --- a/tests/test-telega-config.el +++ b/tests/test-telega-config.el @@ -18,9 +18,13 @@ (should (featurep 'telega-config))) (ert-deftest test-telega-config-launcher-binding-is-telega () - "Normal: =C-; G= invokes the launcher wrapper, which routes to -`telega' when installed or signals a helpful user-error otherwise." - (should (eq (keymap-lookup cj/custom-keymap "G") #'cj/telega))) + "Normal: =C-; T= invokes the launcher wrapper, which routes to +`telega' when installed or signals a helpful user-error otherwise. + +Was =C-; G= when `T' was contested between org-table and transcription +menus; both have moved (org-table flattened under `C-; O', +transcription cleared to M-x), so the natural mnemonic is free." + (should (eq (keymap-lookup cj/custom-keymap "T") #'cj/telega))) (ert-deftest test-telega-config-launcher-without-package-signals-user-error () "Error: with telega absent, the launcher signals a `user-error' that |
