diff options
author | Alan Pearce | 2016-02-16 14:44:42 +0100 |
---|---|---|
committer | Alan Pearce | 2016-02-16 14:44:42 +0100 |
commit | 321e46792fd1aed34793b12574550272e77523cb (patch) | |
tree | ad50a3c944c2691c00a39b3ea424f268eb9fc68c | |
parent | 5b6d3558c4eda8e757e60321fa83c8c99a5604ee (diff) | |
download | nixfiles-321e46792fd1aed34793b12574550272e77523cb.tar.lz nixfiles-321e46792fd1aed34793b12574550272e77523cb.tar.zst nixfiles-321e46792fd1aed34793b12574550272e77523cb.zip |
Emacs: Fix option key usage generically
-rw-r--r-- | tag-emacs/emacs.d/init.org | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 4abdfc5f..182bf8f8 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 |