summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-02-16 13:40:33 +0100
committerAlan Pearce2016-02-16 13:40:33 +0100
commit5b6d3558c4eda8e757e60321fa83c8c99a5604ee (patch)
tree76e4da440fa45d62e4117249813ea49f0b7f9c42 /tag-emacs/emacs.d
parent0b94384382c0fb6e83d85feb1f6a0548f778c84b (diff)
downloaddotfiles-5b6d3558c4eda8e757e60321fa83c8c99a5604ee.tar.lz
dotfiles-5b6d3558c4eda8e757e60321fa83c8c99a5604ee.tar.zst
dotfiles-5b6d3558c4eda8e757e60321fa83c8c99a5604ee.zip
Emacs: Improve special character input on OS X
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org5
1 files changed, 3 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 28bd539..4abdfc5 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -1172,12 +1172,13 @@ Option/alt, then Control.
     (set-keyboard-coding-system nil)
     (custom-set-variables
      '(mac-option-modifier 'meta)
-     '(mac-right-option-modifier 'left)
+     '(mac-right-option-modifier 'alt)
      '(mac-control-modifier 'control)
      '(mac-right-control-modifier 'left)
      '(mac-command-modifier 'super)
      '(mac-right-command-modifier 'left)
-     '(mac-function-modifier 'hyper)))
+     '(mac-function-modifier 'hyper))
+    (bind-key "A-@" "€"))
 #+END_SRC
 
 #+BEGIN_SRC emacs-lisp