How to write a tilde (~) character in Emacs on Mac OS X?

11,587

Solution 1

You could always open the 'character viewer', select 'Punctuation', find '~' (tilde), and then double click it. That will insert it at the Emacs point. (The 'character viewer' is readily accessible after checking 'Show Keyboard & Character Viewers in menu bar' from the Keyboard pane in the System Preferences window.)

You could also define an emacs-lisp function as:

(defun tilde () (interactive) (insert "~"))

and then invoke it with M-x tilde to insert a tilde. Could then assign that function to the key combo of your choice as

(global-set-key "\M-\C-!" 'tilde)   ;; you choose the combo

and add all this to your 'emacs init' file.

Solution 2

While this question is pretty old, none of the answers seems satisfying for Emacs for OS X (the most popular choice these days). So, for future readers ...

Plain Emacs for OS X uses both Alt keys as Meta by default. As many characters are typed using Alt on a german Mac keyboard (tilde, brackets, curly braces etc.), I'd recommend setting ns-right-alternate-modifier to nil, which enables typing tilde (Alt-n) and other characters using the right Alt key, while the left one can be used as Meta (like for M-x).

Alternatively Cmd can be customized to be Meta. All options can be interactively customized under M-x customize-group ns.

Share:
11,587
Jan Deinhard
Author by

Jan Deinhard

Updated on June 04, 2022

Comments

  • Jan Deinhard
    Jan Deinhard almost 2 years

    I'm used to write a ~ character by pressing Alt+N on Mac OS X. This does not work in Emacs. Alt+N key seems to be bind to the command history. So my question is how to write a ~ character in Emacs on Mac OS X?

    EDIT: I'm using Aquamacs.