Skip to content

Instantly share code, notes, and snippets.

@jamespo
Created November 7, 2013 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamespo/7356238 to your computer and use it in GitHub Desktop.
Save jamespo/7356238 to your computer and use it in GitHub Desktop.
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