Skip to content

Instantly share code, notes, and snippets.

@myuhe
Created February 21, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myuhe/3b1ac5d5a69b2842a1fd to your computer and use it in GitHub Desktop.
Save myuhe/3b1ac5d5a69b2842a1fd to your computer and use it in GitHub Desktop.
(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