emacs scroll keys
I like making the keypad plus/minus keys scroll my emacs window without moving the cursor. For ~/.emacs:
(defun scroll-down-keep-cursor ()
;; Scroll the text one line down while keeping the cursor
(interactive)
(scroll-down 1))
(defun scroll-up-keep-cursor ()
;; Scroll the text one line up while keeping the cursor
(interactive)
(scroll-up 1))
(global-set-key [kp-subtract] 'scroll-down-keep-cursor)
(global-set-key [kp-add] 'scroll-up-keep-cursor)
comments failed- {'msg': '', 'status_int': 408, 'response': }
Atom feed of this blog