How can I make emacs accept the period/dot from the keypad and insert a "." into the current buffer? I've managed to set-up all the numbers on the keypad using the following:
(global-set-key (kbd "<kp-0>") "0")
(global-set-key (kbd "<kp-1>") "1")
...
But the code that emacs tells me is registered when pressing the dot key is M-O n
rather than a <kp-?>
key.
Any ideas?