meow-edit / meow

Yet another modal editing on Emacs / 猫态编辑
GNU General Public License v3.0
1.07k stars 128 forks source link

Space h f actually runs view-emacs-FAQ #504

Closed jgarte closed 3 months ago

jgarte commented 8 months ago

Space h f actually runs view-emacs-FAQ instead of describe-function.

image

WDYT

DogLooksGood commented 8 months ago

SPC h f refers to C-h C-f, while describe-function is C-h f (SPC h SPC f).

Since it's a translation following one pattern, we can't get rid of these cases. Just bind it in leader keymap for easy access.

johannesneyer commented 4 months ago

I have this in my config for these cases:

(use-package emacs
  ; ...
  :bind
  (("C-h C-m" . nil)
   ("C-h C-f" . nil)
   ("C-h C-a" . nil)))