summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-02-16 14:44:42 +0100
committerAlan Pearce2016-02-16 14:44:42 +0100
commit321e46792fd1aed34793b12574550272e77523cb (patch)
treead50a3c944c2691c00a39b3ea424f268eb9fc68c /tag-emacs/emacs.d
parent5b6d3558c4eda8e757e60321fa83c8c99a5604ee (diff)
downloaddotfiles-321e46792fd1aed34793b12574550272e77523cb.tar.lz
dotfiles-321e46792fd1aed34793b12574550272e77523cb.tar.zst
dotfiles-321e46792fd1aed34793b12574550272e77523cb.zip
Emacs: Fix option key usage generically
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org5
1 files changed, 2 insertions, 3 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 4abdfc5..182bf8f 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -1172,13 +1172,12 @@ Option/alt, then Control.
     (set-keyboard-coding-system nil)
     (custom-set-variables
      '(mac-option-modifier 'meta)
-     '(mac-right-option-modifier 'alt)
+     '(mac-right-option-modifier '(:function 'alt :mouse 'alt))
      '(mac-control-modifier 'control)
      '(mac-right-control-modifier 'left)
      '(mac-command-modifier 'super)
      '(mac-right-command-modifier 'left)
-     '(mac-function-modifier 'hyper))
-    (bind-key "A-@" "€"))
+     '(mac-function-modifier 'hyper)))
 #+END_SRC
 
 #+BEGIN_SRC emacs-lisp