Change fonts & announce when font changes

This commit is contained in:
Henrik Lissner 2015-05-13 19:26:24 -04:00
parent 34560b0bd0
commit 9f1435cbfb
2 changed files with 8 additions and 6 deletions

View file

@ -109,7 +109,9 @@ key-chord-define."
(if (>= my/cycle-font-i (1- (length *fonts)))
(setq my/cycle-font-i 0)
(cl-incf my/cycle-font-i)))
(set-frame-font (nth my/cycle-font-i *fonts)))
(let ((font (nth my/cycle-font-i *fonts)))
(message "Changing font to %s" (nth 1 (font-face-attributes font)))
(set-frame-font font)))
;;;; Global Defuns ;;;;;;;;;;;;;;;;;;;;;