C-. doesn't work in the terminal when I bind it to a command in Emacs. I tried this procedure on gnome-terminal
and real terminal tty1. I start Emacs with the -nw
flag, then press C-h k (the command for describe-key
), then press C-.. Emacs only receives the .
, without the Ctrl
. How do I get this working in Emacs?
I'm binding keys with this process:
(define-key c-mode-base-map (kbd "C-.") 'semantic-ia-fast-jump)
or
(define-key c-mode-base-map [(control .)] 'semantic-ia-fast-jump)