I am trying to override Control-Meta-Down Arrow and Control-Meta-Up Arrow in emacs.
I've tried all sorts of combinations of: (global-set-key [C-M-down] 'function) and: "\C-\M-<down>" etc... but it always says: ESC undefined. This means it is only taking into account the M-<down>. Why is it ignoring the Control?? I've been working on this for 3 hours and emacs online documentation with regards to key bindings is surprisingly absolutely terrible.
ESC undefined? To see what bindings have been made, typeC-h b, and then you'll see what (if anything) 'function was bound to. (alternativelyC-h w function)C-h kthen hitCtrl-Meta-down, it saysESC undefined. Meaning, it never even got the ctrl key press. Why is that?