Skip to content

Instantly share code, notes, and snippets.

@sshine
Created September 3, 2013 09:42
Show Gist options
  • Save sshine/6421751 to your computer and use it in GitHub Desktop.
Save sshine/6421751 to your computer and use it in GitHub Desktop.
(defun kb (k) (read-kbd-macro k))
(dolist (pair
'(("C-k" kill-whole-line)
("C-n" dabbrev-expand)
("C-x C-g" goto-line)
("C-<tab>" next-multiframe-window)
))
(global-set-key (kb (car pair)) (cadr pair)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment