I'm following info found on this link, but cannot get the desired custom key bindings to work for windmove
.
Basically, I put the following in my .emacs
file:
(global-set-key (kbd "C-M-<left>") 'windmove-left)
(global-set-key (kbd "C-M-<right>") 'windmove-right)
(global-set-key (kbd "C-M-<up>") 'windmove-up)
(global-set-key (kbd "C-M-<down>") 'windmove-down)
Where my Control
key is Ctrl
and my Meta
key is Alt
, and I am using Emacs 24.5.1
on OS X 10.10.5.
While I have two windows in a maximized terminal (iTerm2
), nothing happens when I press any of the 3-key chords above. Why?