Created
September 3, 2013 09:42
-
-
Save sshine/6421751 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(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