I've got a couple emacs keybindings as follows:

(global-set-key (kbd "C-,") 'beginning-of-buffer)
(global-set-key (kbd "C-.") 'end-of-buffer)

Recently, I realized these don't work in emacs-nox. Is it is possible to get them working, or is this just a limitation of emacs-nox?

link|improve this question
4  
It's probably a limitation of your terminal. Most terminals I've used don't send any keycodes at all for C-, and C-.. – msandiford Nov 23 '10 at 22:21
@Spong - You should make that an answer. – Slomojo Nov 24 '10 at 4:04
feedback

2 Answers

up vote 2 down vote accepted

By popular demand:

It's probably a limitation of your terminal.

Most terminals I've used don't send any keycodes at all for C-, and C-..

You can check this by executing M-x describe-key (usually bound to C-h k), and then typing C-, and/or C-.. If Emacs does nothing when you hit the keys, it's your terminal.

link|improve this answer
Thanks, I was afraid it would be something like that. I guess I should just stick with keybindings that will work anywhere. – Joshua Kunzmann Nov 25 '10 at 22:02
feedback

On my emacs(21), \C-. and \C-, don't register as keyed. I use terminal through PuTTY. The default keybindings \M-< and \M-> works fine for me for beginning-of-buffer and end-of-buffer respectively.

So either use the default keys or set some other keys if your emacs-nox does not register them as keyed in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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