noctuid/general.el

general-define-key :predicate broken?

Closed this issue · 4 comments

This doesn't seem to work (the nil binding has unconditional effect):

(general-define-key :keymaps 'normal
                    :predicate 'magit-blame-read-only-mode
                    "q" nil)

This works as expected:

(general-define-key :keymaps 'normal
                    "q" (general-predicate-dispatch 'evil-record-macro
                          magit-blame-read-only-mode nil))

Tested with current master.

This is the expected behavior. In the first keybinding, you are replacing the default evil-record-macro keybinding. :predicate is only useful if the fallback keybinding is defined in another lower precedence keymap. general-predicate-dispatch has to be used for cases like this.

I've (hopefully) improved the documentation. Let me know if you have any suggestions to make it more clear.