vote up 3 vote down star
1

How do you set a function to \C-' ? when I try to do :

(global-set-key "\C-'" 'myfunct)

it gives me "Invalid modifier in string".

flag

67% accept rate

3 Answers

vote up 9 vote down check

What is \C-'? Do you want something to happen when you type backslash+c+quote? Or do you mean C-' (control+quote)? If it's the latter (and I guess it is), then you should use

(global-set-key (kbd "C-'") 'myfunct)
link|flag
vote up 1 vote down

For any key sequence you want to use, press C-h k and then press the key sequence you want to use. Then it tells you the name of the key. That name is what should be used (with the code in the accepted answer).

link|flag
vote up 0 vote down

That was what I wanted, thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.