Created
July 25, 2014 00:58
-
-
Save 10long/cdd7fa30a83905b42e78 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
;; goto jump ================================================================== | |
(defun jump-next-line-n (n) | |
(interactive "nnext:") | |
(next-line n)) | |
(defun jump-prev-line-n (n) | |
(interactive "nnext:" ) | |
(previous-line n)) | |
(global-set-key (kbd "M-n") 'jump-next-line-n) | |
(global-set-key (kbd "M-p") 'jump-prev-line-n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment