Files
sydnix/modules/home/users/msyds/emacs/lisp/syd/which-key.el
T
2025-11-23 04:06:39 -07:00

13 lines
410 B
EmacsLisp
Executable File

;;; -*- lexical-binding: t; -*-
(require 'syd/base)
;; Show possible completions for a partially-entered key sequence.
(use-package which-key
;; BUG: (#4) If the first input is a prefix key, `which-key-mode' won't be
;; activated in time.
:hook (on-first-input . which-key-mode)
:custom ((which-key-allow-evil-operators t)
(which-key-show-operator-state-maps t)))
(provide 'syd/which-key)