diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-15 14:41:12 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-15 14:41:12 -0600 |
| commit | 453b4765b9626ea20cb8507f6fa3583fa02451f6 (patch) | |
| tree | 82e54ced873793ed097147693befac50a7209829 | |
| parent | c23299040f1bffb4141d04d324ecb382f4505d0e (diff) | |
| download | dotemacs-453b4765b9626ea20cb8507f6fa3583fa02451f6.tar.gz dotemacs-453b4765b9626ea20cb8507f6fa3583fa02451f6.zip | |
fix(keybindings): remove auth-cache binding from C-; A
Resolves conflict with align-regexp on the same key. Auth cache reset
is accessible via M-x cj/reset-auth-cache.
| -rw-r--r-- | modules/auth-config.el | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/auth-config.el b/modules/auth-config.el index 83a7e2d0..c760d71a 100644 --- a/modules/auth-config.el +++ b/modules/auth-config.el @@ -167,13 +167,7 @@ file on disk is not modified." (message "✓ oauth2-auto token cache cleared")) (message "⚠ oauth2-auto not loaded yet"))) -;; Keybindings -(with-eval-after-load 'keybindings - (keymap-set cj/custom-keymap "A" #'cj/reset-auth-cache)) - -(with-eval-after-load 'which-key - (which-key-add-key-based-replacements - "C-; A" "reset auth cache")) +;; No keybinding — use M-x cj/reset-auth-cache (provide 'auth-config) ;;; auth-config.el ends here. |
