diff options
| author | Justin Burkett | 2021-06-21 14:00:54 -0400 |
|---|---|---|
| committer | Justin Burkett | 2021-06-21 14:00:54 -0400 |
| commit | fffd3e5ebfbd5a38f1f78197452c13330762dc9a (patch) | |
| tree | 73512079d08b41b38b088070db045d8f673c2128 | |
| parent | 8a558e6a794da76f689f8404f9e7e8d030cfb49c (diff) | |
| download | emacs-fffd3e5ebfbd5a38f1f78197452c13330762dc9a.tar.gz emacs-fffd3e5ebfbd5a38f1f78197452c13330762dc9a.zip | |
Fix default of which-key-replacement-alist
| -rw-r--r-- | which-key.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/which-key.el b/which-key.el index 5c2ca802f74..bb1cf01ba45 100644 --- a/which-key.el +++ b/which-key.el | |||
| @@ -152,9 +152,7 @@ remapped given the currently active keymaps." | |||
| 152 | 152 | ||
| 153 | (defcustom which-key-replacement-alist | 153 | (defcustom which-key-replacement-alist |
| 154 | (delq nil | 154 | (delq nil |
| 155 | `(((nil . "Prefix Command") . (nil . "prefix")) | 155 | `(((nil . "which-key-show-next-page-no-cycle") . (nil . "wk next pg")) |
| 156 | ((nil . "\\`\\?\\?\\'") . (nil . "lambda")) | ||
| 157 | ((nil . "which-key-show-next-page-no-cycle") . (nil . "wk next pg")) | ||
| 158 | ,@(unless which-key-dont-use-unicode | 156 | ,@(unless which-key-dont-use-unicode |
| 159 | '((("<left>") . ("←")) | 157 | '((("<left>") . ("←")) |
| 160 | (("<right>") . ("→")))) | 158 | (("<right>") . ("→")))) |