From 94a42afc455b219f35eddd3f1ac3fb7f928ec773 Mon Sep 17 00:00:00 2001 From: Josh Greenwood Date: Fri, 29 May 2015 15:34:20 -0400 Subject: [PATCH] Adds OSX command +/- keybindings for font scaling --- contrib/osx/keybindings.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/osx/keybindings.el b/contrib/osx/keybindings.el index 361d195fc..7bb2734cd 100644 --- a/contrib/osx/keybindings.el +++ b/contrib/osx/keybindings.el @@ -6,6 +6,8 @@ (setq mac-option-modifier 'meta) ;; Keybindings + (global-set-key (kbd "s-=") 'text-scale-increase) + (global-set-key (kbd "s--") 'text-scale-decrease) (global-set-key (kbd "s-q") 'save-buffers-kill-terminal) (global-set-key (kbd "s-v") 'yank) (global-set-key (kbd "s-c") 'kill-ring-save)