emacs keybinding

1

In emacs,

What do I press on my keyboard that corresponds with the keybinding.

A-.

Nathaniel Saxe

Posted 2010-08-02T15:31:12.590

Reputation: 518

Answers

3

A- is the Alt key. Unless you have changed it from the default from within Emacs, that is Alt on the keyboard.

KeithB

Posted 2010-08-02T15:31:12.590

Reputation: 8 506

1I thought Alt was "M" or Meta? – Nathaniel Saxe – 2010-08-03T07:58:39.977

1

If you are using a mac, A- corresponds to the command key, or the so-called Apple key. For one example of a key binding defined this way, see my answer to another question here.

Vivi

Posted 2010-08-02T15:31:12.590

Reputation: 258

1

A- on a windows keyboard it must be the Windows key On a Mac it is the cmd but I prefer to let cmd be the meta. So I add this line in my .emacs

(setq mac-option-key-is-meta nil)
(setq mac-command-key-is-meta t)
(setq mac-command-modifier 'meta)
(setq mac-option-modifier nil)

mathk

Posted 2010-08-02T15:31:12.590

Reputation: 141