Skip to content

Instantly share code, notes, and snippets.

@kohn
Created August 9, 2016 14:54
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 kohn/e9c1a1a23eeea4b4cf8da6b1a9273c7e to your computer and use it in GitHub Desktop.
Save kohn/e9c1a1a23eeea4b4cf8da6b1a9273c7e to your computer and use it in GitHub Desktop.
(defun forward-8-line()
(interactive)
(forward-line 8))
(defun backward-8-line()
(interactive)
(forward-line -8))
(global-set-key "\C-\M-n" 'forward-8-line)
(global-set-key "\C-\M-p" 'backward-8-line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment