Skip to content

Commit

Permalink
Add bindings to jump between page breaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjstadig committed Jun 17, 2014
1 parent cd64585 commit c1b6a00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .emacs.d/paul/bindings.el
Expand Up @@ -38,3 +38,7 @@
(define-key paredit-mode-map (kbd "C-M-[") 'paredit-backward-barf-sexp)
(define-key paredit-mode-map (kbd "C-M-}") 'paredit-forward-barf-sexp)
(define-key paredit-mode-map (kbd "C-M-{") 'paredit-backward-barf-sexp)))

;; keys for moving to prev/next code section (Form Feed; ^L)
(global-set-key (kbd "<C-M-prior>") 'backward-page) ; Ctrl+Alt+PageUp
(global-set-key (kbd "<C-M-next>") 'forward-page) ; Ctrl+Alt+PageDown

0 comments on commit c1b6a00

Please sign in to comment.