Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 14th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. (defun scroll-one-line-up ()
  2.  (interactive)
  3.  (scroll-up 1)
  4.  (scroll-other-window))
  5.  
  6. (defun scroll-one-line-down ()
  7.  (interactive)
  8.  (scroll-down 1)
  9.  (scroll-other-window -1))
  10.  
  11. (global-set-key (kbd "C-M-v") 'scroll-one-line-up)
  12. (global-set-key (kbd "C-M-g") 'scroll-one-line-down)