Dodgie
Dodgie

Reputation: 663

Binding C-; in Emacs

How can I bind a function to C-; in Emacs? I tried to use bracket notation with an escape character:

(global-set-key [C-\;] 'my-func)

and kbd:

(global-set-key (kbd "<C-;>") 'my-func)

Is it not possible? If so, then why acknowledge the existence of the chord (C-; is undefined)?

I am running Emacs 24.1.1.

Upvotes: 3

Views: 644

Answers (1)

JSON
JSON

Reputation: 4606

(global-set-key (kbd "C-;") 'my-func) seems to avoid problems with the comment character and escaping.

Upvotes: 5

Related Questions