Created
July 1, 2012 00:54
-
-
Save jsulak/3026306 to your computer and use it in GitHub Desktop.
Shift-arrow support in Emacs within GNU screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Works in iTerm 2 | |
(define-key global-map "\e[1;2A" (kbd "S-<up>")) | |
(define-key global-map "\e[1;2B" (kbd "S-<down>")) | |
(define-key global-map "\e[1;2D" (kbd "S-<left>")) | |
(define-key global-map "\e[1;2C" (kbd "S-<right>")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment