Created
September 27, 2014 16:04
-
-
Save gadmyth/53123f030b6161dca116 to your computer and use it in GitHub Desktop.
Number-mode not scale (using ov instead of text-scale)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'ov) | |
(defun ov-double-height () | |
(interactive) | |
(ov (point-min) (point-max) '(face (:height 1.25)))) | |
(defun ov-half-height () | |
(interactive) | |
(ov (point-min) (point-max) '(face (:height 0.8)))) | |
(defun ov-reset-height () | |
(interactive) | |
(ov-clear)) | |
(global-set-key (kbd "C-x C-=") 'ov-double-height) | |
(global-set-key (kbd "C-x C--") 'ov-half-height) | |
(global-set-key (kbd "C-x C-0") 'ov-reset-height) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment