13 lines
410 B
EmacsLisp
Executable File
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)
|