Skip to content

Instantly share code, notes, and snippets.

@jamespo
Created November 7, 2013 15:13
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Make browser back and forward keys work in emacs for changing buffers
;; make thinkpad browser keys navigate buffers
(setq w32-pass-multimedia-buttons-to-system nil)
(global-set-key (kbd "<browser-forward>") 'next-buffer)
(global-set-key (kbd "<browser-back>") 'previous-buffer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment