有没有关于 Emacs 中各类 keymap 的介绍

比如 input-decode-map,包括他们的作用和优先级之类的

1 个赞

优先级的话,看这个:

Mickey Petersen 在 Mastering Emacs 里也有详细介绍:

如果你有安装 consult 的话,可以超级方便地利用 consult-info 查询 info manual 里的多数信息

补充: 关于 consult-info 的几个方便的函数,(均抄自consult官方repo,可根据需要改成自己常用的manual):

(defun consult-info-emacs ()
  "Search through Emacs info pages."
  (interactive)
  (consult-info "emacs" "efaq" "elisp" "cl" "compat"))

(defun consult-info-org ()
  "Search through the Org info page."
  (interactive)
  (consult-info "org"))

(defun consult-info-completion ()
  "Search through completion info pages."
  (interactive)
  (consult-info "vertico" "consult" "marginalia" "orderless" "embark"
                "corfu" "cape" "tempel"))
2 个赞