I would like to assign the Alt-Backspace shortcut to pop-global-mark in Emacs (NOX). I tried doing it this way:

(global-set-key [M-backspace] 'pop-global-mark)

That didn't work. I've not been able to find the correct representation of 'backspace', it seems.

I'm on Linux (Gnome) and use the generic US Keyboard layout.

link|improve this question

60% accept rate
What does M-x describe-key say when you press the combination? Most likely your terminal swallows it. (Your code is correct.) – nschum Dec 20 '11 at 8:31
feedback

2 Answers

up vote 2 down vote accepted

Try (global-set-key "\M-\d" 'pop-global-mark).

link|improve this answer
2  
Note that this is what Emacs recommends when you try setting Alt-backspace via (global-set-key [M-DEL] 'test), and DEL is what C-h gives you for backspace. – Thomas Dec 20 '11 at 12:57
Yup. That's where I got it from. – Noufal Ibrahim Dec 20 '11 at 16:11
feedback

(kbd "<M-backspace>") instead of [M-backspace] should work.

link|improve this answer
I think using (kbd ...) is always the best bet, if only from a readability standpoint. – Tikhon Jelvis Dec 20 '11 at 11:13
That's wrong I think, it should be (kbd "M-DEL") – Tyler Dec 20 '11 at 20:49
@Tyler: No, I checked it now, it works. [M-backspace] works, too, though, so I guess nschum is right that the key combination get swallowed before it reaches Emacs (by the terminal, as suggested, or by the window manager, perhaps). – Rörd Dec 20 '11 at 21:57
@Rord: oops, you're right. I must of mis-copied something. – Tyler Dec 20 '11 at 22:23
feedback

Your Answer

 
or
required, but never shown

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