home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 49774490ba6b6245d6bc7d09e7d99595a41b73d6
parent 95e8fa223bdce642c18163b1d25d9146cbae08da
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 25 Sep 2020 13:39:23 +0100

tools/emacs: remove which-key disabled conf

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-keybindings.el | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

diff --git a/tools/emacs/config/config-keybindings.el b/tools/emacs/config/config-keybindings.el @@ -2,23 +2,6 @@ ;;; Commentary: ;;; Key binding specific configuration ;;; Code: -(use-package which-key - :disabled - :init (which-key-mode) - :custom - (which-key-idle-delay 2) - (which-key-idle-secondary-delay 0.05) - (which-key-show-early-on-C-h t) - (which-key-sort-order 'which-key-prefix-then-key-order) - (which-key-popup-type 'side-window) - (which-key-show-prefix 'echo) - (which-key-max-display-columns 6) - (which-key-separator " → ") - :config - (add-to-list 'which-key-replacement-alist '(("TAB" . nil) . ("↹" . nil))) - (add-to-list 'which-key-replacement-alist '(("RET" . nil) . ("⏎" . nil))) - (add-to-list 'which-key-replacement-alist '(("DEL" . nil) . ("⇤" . nil))) - (add-to-list 'which-key-replacement-alist '(("SPC" . nil) . ("␣" . nil)))) ;; Disable C-x C-n to avoid the disabled command buffer (unbind-key "C-x C-n" global-map)