I\'d like to fix the cursor to the centre line of the screen, so that when I press Ctrl-N or Ctrl-P, the page itself moves up or down, and the cursor stays still.
Ha
You can roll your own using the recenter built-in:
(global-set-key (kbd "C-n") (lambda (n) (interactive "p") (next-line n) (recenter))) (global-set-key (kbd "C-p") (lambda (n) (interactive "p") (previous-line n) (recenter)))