I have the following keyboard shortcut in my init.el
(global-set-key (kbd "C-S-<up>") 'move-line-up)
This works great in Cocoa Emacs.app, but when running emacs in console mode in iTerm2 it seems that they keys never make it to emacs.
I tried running the following in emacs
(read-key-sequence "?")
And entering C-S-<up>
in the prompt but it was never received. That makes me think that either iTerm2 or zsh is stealing the keystrokes. Any ideas on how to debug this? Or better yet answers?