I have been trying to get the following key binding to work in emacs running in a mac terminal.
(define-key c-mode-base-map (kbd "C-`") 'ac-complete-clang)
It never worked. At first, I think i got the way of defining the key binding wrong. But I later verified that it worked with some simpler key binding, e.g. M-_. Now I realize that it is the terminal that is not recognizing C-` and many more control key related key binding.
Can someone tell me how I get this to work? Where can I see how Terminal takes when I press C-` and how I should pass this along so that emacs will recognize it?