Last Updated: February 25, 2016
·
955
· rockerfeller

Unbinding shortcuts in GNU Emacs

Put this in your ~/.emacs file. (Changing "\C-v" "\C-z" for the shortcuts you want to remove, of course)

(dolist (key '("\C-v" "\C-z"))
(global-unset-key key))

More details here: http://stackoverflow.com/questions/7549259/is-there-a-quick-way-to-unbind-keys-in-emacs