I'm trying to set some custom bindings and have ran into a puzzling problem, I'm unable to rebind C-M-q or unbind it entirely. I have no trouble rebinding other keys, so I don't know what is special about C-M-q. Below are some of the things I've tried in my .emacs file.
;;(global-set-key (kbd "C-M-q") nil)
;;(global-unset-key (kbd "C-M-q"))
;;(global-set-key (kbd "C-M-q") 'shrink-window-horizontally)
(global-set-key (kbd "C-M-y") 'shrink-window-horizontally)
(global-set-key (kbd "C-M-w") 'shrink-window)
(global-set-key (kbd "C-M-e") 'enlarge-window)
(global-set-key (kbd "C-M-r") 'enlarge-window-horizontally)
No matter what I try, the C-h k command says C-M-q is bound to
C-M-q runs the command indent-pp-sexp, which is an interactive compiled Lisp function in `lisp-mode.el'.
It is bound to C-M-q.