2015-01-27 03:51:47 +00:00
|
|
|
;;; core-fonts-support.el --- Spacemacs Core File
|
2015-01-27 03:40:02 +00:00
|
|
|
;;
|
2017-01-06 03:51:13 +00:00
|
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
2015-01-27 03:40:02 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
2015-01-27 03:51:47 +00:00
|
|
|
(require 'core-funcs)
|
2015-01-27 09:49:19 +00:00
|
|
|
(require 'core-spacemacs-buffer)
|
2015-01-27 03:40:02 +00:00
|
|
|
|
2015-08-14 16:25:54 +00:00
|
|
|
(defvar spacemacs--diminished-minor-modes nil
|
|
|
|
"List of diminished modes to unicode or ascii values.")
|
|
|
|
|
2016-06-03 19:19:32 +00:00
|
|
|
(defun spacemacs/set-default-font (plists)
|
|
|
|
"Set the font given the passed PLISTS.
|
2015-01-27 03:40:02 +00:00
|
|
|
|
2016-06-03 19:19:32 +00:00
|
|
|
PLISTS has either the form (\"fontname\" :prop1 val1 :prop2 val2 ...)
|
|
|
|
or is a list of such. The first font that can be found will be used.
|
|
|
|
|
|
|
|
The return value is nil if no font was found, truthy otherwise."
|
|
|
|
(unless (listp (car plists))
|
|
|
|
(setq plists (list plists)))
|
|
|
|
(catch 'break
|
|
|
|
(dolist (plist plists)
|
|
|
|
(when (find-font (font-spec :name (car plist)))
|
|
|
|
(let* ((font (car plist))
|
|
|
|
(props (cdr plist))
|
|
|
|
(scale (plist-get props :powerline-scale))
|
|
|
|
(font-props (spacemacs/mplist-remove
|
|
|
|
(spacemacs/mplist-remove props :powerline-scale)
|
|
|
|
:powerline-offset))
|
|
|
|
(fontspec (apply 'font-spec :name font font-props)))
|
|
|
|
(spacemacs-buffer/message "Setting font \"%s\"..." font)
|
|
|
|
(set-frame-font fontspec nil t)
|
2016-06-06 11:06:04 +00:00
|
|
|
(push `(font . ,(frame-parameter nil 'font)) default-frame-alist)
|
2016-06-03 19:19:32 +00:00
|
|
|
(setq-default powerline-scale scale)
|
|
|
|
(setq-default powerline-height (spacemacs/compute-powerline-height))
|
|
|
|
;; fallback font for unicode characters used in spacemacs
|
|
|
|
(pcase system-type
|
|
|
|
(`gnu/linux
|
|
|
|
(setq fallback-font-name "NanumGothic")
|
|
|
|
(setq fallback-font-name2 "NanumGothic"))
|
|
|
|
(`darwin
|
|
|
|
(setq fallback-font-name "Arial Unicode MS")
|
|
|
|
(setq fallback-font-name2 "Arial Unicode MS"))
|
|
|
|
(`windows-nt
|
|
|
|
(setq fallback-font-name "MS Gothic")
|
|
|
|
(setq fallback-font-name2 "Lucida Sans Unicode"))
|
|
|
|
(`cygwin
|
|
|
|
(setq fallback-font-name "MS Gothic")
|
|
|
|
(setq fallback-font-name2 "Lucida Sans Unicode"))
|
|
|
|
(other
|
|
|
|
(setq fallback-font-name nil)
|
|
|
|
(setq fallback-font-name2 nil)))
|
|
|
|
(when (and fallback-font-name fallback-font-name2)
|
|
|
|
;; remove any size or height properties in order to be able to
|
|
|
|
;; scale the fallback fonts with the default one (for zoom-in/out
|
|
|
|
;; for instance)
|
|
|
|
(let* ((fallback-props (spacemacs/mplist-remove
|
|
|
|
(spacemacs/mplist-remove font-props :size)
|
|
|
|
:height))
|
|
|
|
(fallback-spec (apply 'font-spec
|
|
|
|
:name fallback-font-name
|
|
|
|
fallback-props))
|
|
|
|
(fallback-spec2 (apply 'font-spec
|
|
|
|
:name fallback-font-name2
|
|
|
|
fallback-props)))
|
|
|
|
;; window numbers
|
|
|
|
(set-fontset-font "fontset-default"
|
|
|
|
'(#x2776 . #x2793) fallback-spec nil 'prepend)
|
|
|
|
;; mode-line circled letters
|
|
|
|
(set-fontset-font "fontset-default"
|
|
|
|
'(#x24b6 . #x24fe) fallback-spec nil 'prepend)
|
|
|
|
;; mode-line additional characters
|
|
|
|
(set-fontset-font "fontset-default"
|
|
|
|
'(#x2295 . #x22a1) fallback-spec nil 'prepend)
|
|
|
|
;; new version lighter
|
|
|
|
(set-fontset-font "fontset-default"
|
|
|
|
'(#x2190 . #x2200) fallback-spec2 nil 'prepend))))
|
|
|
|
(throw 'break t)))
|
|
|
|
nil))
|
2015-01-27 03:40:02 +00:00
|
|
|
|
2015-01-28 02:46:37 +00:00
|
|
|
(defun spacemacs/compute-powerline-height ()
|
|
|
|
"Return an adjusted powerline height."
|
|
|
|
(let ((scale (if (and (boundp 'powerline-scale) powerline-scale)
|
|
|
|
powerline-scale 1)))
|
|
|
|
(truncate (* scale (frame-char-height)))))
|
|
|
|
|
2015-01-27 09:49:19 +00:00
|
|
|
(defun spacemacs/set-font (&rest args)
|
|
|
|
"Deprecated function, display a warning message."
|
2015-04-12 16:25:53 +00:00
|
|
|
(spacemacs-buffer/warning (concat "spacemacs/set-font is deprecated. "
|
2015-01-27 09:49:19 +00:00
|
|
|
"Use the variable `dotspacemacs-default-font' "
|
|
|
|
"instead (see Font section in "
|
2015-07-04 11:46:15 +00:00
|
|
|
"~/.emacs.d/doc/DOCUMENTATION.org for more "
|
2015-01-27 09:49:19 +00:00
|
|
|
"info).")))
|
|
|
|
|
2016-01-19 21:35:42 +00:00
|
|
|
(defmacro spacemacs|diminish (mode &optional unicode ascii)
|
2015-08-14 16:25:54 +00:00
|
|
|
"Diminish MODE name in mode line to UNICODE or ASCII depending on the value
|
|
|
|
`dotspacemacs-mode-line-unicode-symbols'.
|
2016-01-19 21:35:42 +00:00
|
|
|
If ASCII is not provided then UNICODE is used instead. If neither are provided,
|
|
|
|
the mode will not show in the mode line."
|
|
|
|
`(let ((cell (assq ',mode spacemacs--diminished-minor-modes)))
|
|
|
|
(if cell
|
|
|
|
(setcdr cell '(,unicode ,ascii))
|
|
|
|
(push '(,mode ,unicode ,ascii) spacemacs--diminished-minor-modes))))
|
2015-08-14 16:25:54 +00:00
|
|
|
|
2017-03-13 05:36:09 +00:00
|
|
|
(defun spacemacs/diminish-undo (mode)
|
2017-04-13 04:17:24 +00:00
|
|
|
"Restore the diminished lighter."
|
2017-03-13 05:36:09 +00:00
|
|
|
(interactive
|
|
|
|
(list (read (completing-read
|
|
|
|
"Restore what diminished mode: "
|
|
|
|
(cons (list "diminished-modes")
|
|
|
|
(mapcar (lambda (x) (list (symbol-name (car x))))
|
|
|
|
diminished-mode-alist))
|
|
|
|
nil t nil 'diminish-history-symbols))))
|
2017-04-13 04:17:24 +00:00
|
|
|
;; remove the `mode' entry from spacemacs own list
|
|
|
|
(setq spacemacs--diminished-minor-modes
|
|
|
|
(delq nil (mapcar (lambda (x) (unless (eq (car x) mode) x))
|
|
|
|
spacemacs--diminished-minor-modes)))
|
|
|
|
(diminish-undo mode))
|
2017-03-13 05:36:09 +00:00
|
|
|
|
2015-08-14 16:25:54 +00:00
|
|
|
(defmacro spacemacs|hide-lighter (mode)
|
|
|
|
"Diminish MODE name in mode line to LIGHTER."
|
|
|
|
`(eval-after-load 'diminish '(diminish ',mode)))
|
|
|
|
|
2015-01-27 03:51:47 +00:00
|
|
|
(provide 'core-fonts-support)
|