1

In emacs,

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

A-.

3 Answers3

3

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

KeithB
  • 10,386
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
  • 268
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
  • 151