WIP: still working on -defkey-evil

This commit is contained in:
amirrezaask 2020-03-12 03:05:50 +03:30
parent cac46dec34
commit 34ef71fd66
1 changed files with 6 additions and 3 deletions

View File

@ -37,8 +37,11 @@
(defun -defkey-evil (map state-keys fn)
"Set the given STATE-KEYS on key map MAP to FN."
(mapcar (lambda (state)
(evil-define-key state map (kbd key) fn)) states))
(message "%s" state-keys)
(mapcar (lambda (k) (message "k=>%s" k)) state-keys)
)
;;(mapcar (lambda (state)
;; (evil-define-key state map (kbd key) fn)) states))
(defmacro defkey (map keys fn)
@ -59,7 +62,7 @@ KEYS should be a plist in the following format:
((is-evil?) `(-defkey-evil ,map ,evil-state-key ,fn)))))
(macroexpand '(defkey python-map (:evil (:normal "g s" :visual "v")) foo))
(macroexpand (defkey 'python-map (:evil '(:normal "g s" :visual "v") :god "who cares") 'foo))
(provide 'fg42/key-bindings)
;;; key-bindings.el ends here