Saturday, November 24, 2007

Emacs keybindings problem solved

I am on a roll today ;-) After some googling, I found a solution to emacs key binding problem. The syntax in Emacs 22 seems to have changed a bit. To get the old "C-x x" and "C-x g" bindings back, you need to add the following to your .emacs:

(global-set-key (kbd "C-x x") 'copy-to-register)
(global-set-key (kbd "C-x g") 'insert-register)

No comments: