I would like to bind C-` (control-backquote) but I could not do it.
The sexp
(global-set-key "\M-`" 'other-window)
works, whereas
(global-set-key "\C-`" 'other-window)
doesn’t. It fails with the “Invalid modifier in string” error.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
"\C-a"and similar do work because there is a ASCII code for them. There is none for C-`, simply useBy the way, this often more portable from one emacsen to another.