Created
February 21, 2015 13:59
-
-
Save myuhe/3b1ac5d5a69b2842a1fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro global-set-keys (&rest body) | |
`(progn | |
,@(mapcar #'(lambda (arg) | |
`(global-set-key | |
(kbd ,(car arg)) ,(cadr arg))) body))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment