Skip to content

Instantly share code, notes, and snippets.

@llasram
Created December 7, 2012 02:18
Show Gist options
  • Select an option

  • Save llasram/4230216 to your computer and use it in GitHub Desktop.

Select an option

Save llasram/4230216 to your computer and use it in GitHub Desktop.
Fixing xterm terminal emacs M-up -> A
;; Extra xterm bindings
(require 'xterm)
(define-key xterm-function-map "\e[1;9A" [M-up])
(define-key xterm-function-map "\e[1;9B" [M-down])
(define-key xterm-function-map "\e[1;9C" [M-right])
(define-key xterm-function-map "\e[1;9D" [M-left])
(define-key xterm-function-map "\e[1;9F" [M-end])
(define-key xterm-function-map "\e[1;9H" [M-home])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment