1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-12-22 10:02:24 +02:00

emacs: make volume keys work like PageUp/PageDown

This commit is contained in:
David Kühling 2011-06-26 10:53:45 +02:00
parent ed5db4233c
commit bcb7b64c56

View File

@ -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)