vote up 4 vote down star
1

Background information:

I'm on a Mac, and I've just upgraded to Emacs 23.1 via http://emacsformacosx.com/. There are a few issues, notably the lack of full screen ability.

I've attempted to get around this last issue by installing Megazoomer, which adds a global input manager bound to Cmd-return. This causes the currently forward application to maximise. However, Emacs reports that <s-return> is undefined. I've never seen an s-[key] mentioned before, and Google isn't forthcoming with an answer.

So, two parts:

  1. What does s-[key] mean? This is purely for my satisfaction; and
  2. Can I tell Emacs to ignore this key combination and let the key combination carry through to the system (so that hopefully I can have full screen Emacs back again)?

EDIT: so 1) is resolved, and as to 2) I've got: (global-set-key (kbd "<s-return>") 'ignore), which at least stops the error. However, Emacs still swallows the key combination, which isn't ideal.

flag
If you're new to Mac, you might want to try Aquamacs. F7 (or m-X aquamacs-toggle-full-frame) toggles full-screen mode. – Greg Harman Aug 30 at 18:12
I'm not new to the Mac, I'm new to Emacs. And I've tried Aquamacs and didn't like it. Thanks anyway. – Brad Wright Aug 30 at 18:44
So I've got: (global-set-key (kbd "<s-return>") 'ignore) which means I no longer get an error, but Emacs still swallows the combination. :( – Brad Wright Aug 30 at 18:52

2 Answers

vote up 5 vote down check

It's the Super key, like M- is the Meta key (alt key on a PC keyboard, Command key on your keyboard) and C- is the Control key. (I have of course never seen a super key on my keyboard... they are from a long gone era. Wikipedia has an image of this impressive "Space Cadet keyboard" which will give you all the modifiers you'll ever need:

link|flag
I would really love to have one of these nowadays. +1 for the pic. – Jonathan Aug 30 at 18:26
Me too, imagine having a thumbs-up and thumbs-down button on your keyboard! Not to mention the four roman numerals... :-) – Martin Geisler Aug 30 at 18:40
Awesome, thanks for that. You wouldn't happen to know how I can tell Emacs to drop that combination though...? – Brad Wright Aug 30 at 18:47
I'm sorry, but I don't know the answer to your second part. I can only offer this link which has several recipes: emacswiki.org/emacs/FullScreen – Martin Geisler Sep 2 at 20:42
... except that it says: "fullscreen functionality has not made it into Emacs-23 as of early 2009" when talking about full screen on Mac OS X :-( – Martin Geisler Sep 2 at 20:43
show 1 more comment
vote up 0 vote down
(setq ns-command-modifier nil)

That is supposed to do what you want. However, it's having somewhat unpredictable behaviour on machine when I test it, so be warned.

link|flag

Your Answer

Get an OpenID
or

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