I am having an issue with bind-key
where the following command works
(bind-key* "s-c q" #'quick-calc)
but
(bind-keys* ("s-c q" . #'quick-calc))
does not. Instead I get the error
command-execute: Wrong type argument: commandp, #'quick-calc
when I press s-c q
.
I want to use bind-keys*
to bind multiple keys (without prefix). What am I doing wrong?