Skip to content

Instantly share code, notes, and snippets.

@radhikalism
Created January 17, 2011 10:15
Show Gist options
  • Save radhikalism/782689 to your computer and use it in GitHub Desktop.
Save radhikalism/782689 to your computer and use it in GitHub Desktop.
(define-minor-mode teleprompt2-mode
"Teleprompt mode"
nil
" Teleprompt"
`((,(kbd "<prior>") . (lambda () (interactive) (scroll-down 1)))
(,(kbd "<next>") . (lambda () (interactive) (scroll-up 1)))))
(defun teleprompt-roll ()
(interactive)
(recenter)
(dotimes-with-progress-reporter
(i (count-screen-lines (point) (buffer-end 1)))
"Rolling, rolling, rolling..."
(scroll-up 1)
(sit-for 2.2)))
(provide 'teleprompt2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment