From bcb7b64c56416a7fe1c49faebe2ac965b081994f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sun, 26 Jun 2011 10:53:45 +0200 Subject: [PATCH] emacs: make volume keys work like PageUp/PageDown --- emacs/files/site-start.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/files/site-start.el b/emacs/files/site-start.el index d5ae644..ef3e00b 100644 --- a/emacs/files/site-start.el +++ b/emacs/files/site-start.el @@ -23,3 +23,8 @@ ;; For some reason emacs 23.2 does not come with colored comments by default ;; we fix this here (todo: chose a better color?) (set-face-foreground 'font-lock-comment-face "blue") + +;; f11/f12 are the volume keys on Ben NonoNote. Use them as a replacement for +;; PgUp/PgDown +(global-set-key [f11] 'scroll-down) +(global-set-key [f12] 'scroll-up)