commit bdb8b594abe0223f43f61792dcb6ea8a7494c77f
parent 8adee1e0d233c0c82e4e69ed0b85001aa45010fe
Author: Hugo Soucy <hsoucy@kronostechnologies.com>
Date: Tue, 19 Jun 2018 10:35:15 -0400
Set to `nil` the alternate modifier.
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/partials/key-bindings.el b/partials/key-bindings.el
@@ -47,3 +47,8 @@
(global-set-key (kbd "C-c <right>") 'windmove-right)
(global-set-key (kbd "C-c <down>") 'windmove-down)
(global-set-key (kbd "C-c <left>") 'windmove-left)
+
+;; On Mac OS X disable the right ALT key modification
+(if (eq system-type 'darwin)
+ (setq ns-right-alternate-modifier nil)
+)