This repository has been archived by the owner on Jun 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mixed-pitch.el
166 lines (147 loc) · 5.56 KB
/
mixed-pitch.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
;;; mixed-pitch.el --- Use a variable pitch, keeping fixed pitch where it's sensible -*- lexical-binding: t; -*-
;;; Copyright (C) 2017, 2018 by J. Alexander Branham
;; Author: J. Alexander Branham <[email protected]>
;; Maintainer: J. Alexander Branham <[email protected]>
;; URL: https://github.com/jabranham/mixed-pitch
;; Version: 0.1
;; Package-Requires: ((emacs "24.3"))
;; This file is not part of GNU Emacs.
;;; License:
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see
;; <http://www.gnu.org/licenses/>
;;; Commentary:
;; `mixed-pitch-mode' is a minor mode that enables mixing variable-pitch and
;; fixed-pitch fonts in the same buffer. The list
;; `mixed-pitch-fixed-pitch-faces' defines the faces that are kept fixed-pitch,
;; everything else becomes variable-pitch.
;; Original idea came from https://ogbe.net/blog/toggle-serif.html
;; Shared with permission.
;; Usage:
;; (require 'mixed-pitch)
;; (mixed-pitch-mode)
;; Or, to apply mixed-pitch-mode in all text modes:
;; (add-hook 'text-mode-hook #'mixed-pitch-mode)
;;; Code:
(require 'face-remap)
(require 'cl-lib)
(defgroup mixed-pitch nil
"Mix variable and fixed pitch in a single buffer."
:tag "Mixed pitch"
:prefix "mixed-pitch"
:group 'mixed-pitch)
(defcustom mixed-pitch-fixed-pitch-faces
'(diff-added
diff-context
diff-file-header
diff-function
diff-header
diff-hunk-header
diff-removed
font-latex-math-face
font-latex-sedate-face
font-latex-warning-face
font-latex-sectioning-5-face
font-lock-builtin-face
font-lock-comment-delimiter-face
font-lock-constant-face
font-lock-doc-face
font-lock-function-name-face
font-lock-keyword-face
font-lock-negation-char-face
font-lock-preprocessor-face
font-lock-regexp-grouping-backslash
font-lock-regexp-grouping-construct
font-lock-string-face
font-lock-type-face
font-lock-variable-name-face
markdown-code-face
markdown-gfm-checkbox-face
markdown-inline-code-face
markdown-language-info-face
markdown-language-keyword-face
markdown-math-face
message-header-name
message-header-to
message-header-cc
message-header-newsgroups
message-header-xheader
message-header-subject
message-header-other
mu4e-header-key-face
mu4e-header-value-face
mu4e-link-face
mu4e-contact-face
mu4e-compose-separator-face
mu4e-compose-header-face
org-block
org-block-begin-line
org-block-end-line
org-document-info-keyword
org-code
org-latex-and-related
org-checkbox
org-meta-line
org-table
org-verbatim)
"This is a list holding names of faces that will not be variable pitch when function `mixed-pitch-mode' is enabled."
:type '(repeat face)
:group 'mixed-pitch)
(defcustom mixed-pitch-variable-pitch-cursor 'bar
"If non-nil, function `mixed-pitch-mode' changes the cursor.
When disabled, switch back to what it was before.
See `cursor-type' for a list of acceptable types."
:type 'symbol
:group 'mixed-pitch)
(defvar-local mixed-pitch-fixed-cookie nil)
(defvar-local mixed-pitch-variable-cookie nil)
(defvar-local mixed-pitch-cursor-type nil)
;;;###autoload
(define-minor-mode mixed-pitch-mode
"Change the default face of the current buffer to a variable pitch, while keeping some faces fixed pitch.
See the variable `mixed-pitch-fixed-pitch-faces' for a list of
which faces remain fixed pitch. The height and pitch of faces is
inherited from `variable-pitch' and `default'."
:lighter " MPM"
(let ((var-pitch (face-attribute 'variable-pitch :family))
(var-height (face-attribute 'variable-pitch :height))
(fix-pitch (face-attribute 'default :family))
(fix-height (face-attribute 'default :height)))
;; Turn mixed-pitch-mode on:
(if mixed-pitch-mode
(progn
;; remember cursor type
(when mixed-pitch-variable-pitch-cursor
(setq mixed-pitch-cursor-type cursor-type))
;; remap default face to variable pitch
(setq mixed-pitch-variable-cookie
(face-remap-add-relative
'default :family var-pitch :height var-height))
(setq mixed-pitch-fixed-cookie nil)
;; keep fonts in `mixed-pitch-fixed-pitch-faces' as fixed-pitch.
(dolist (face mixed-pitch-fixed-pitch-faces)
(add-to-list 'mixed-pitch-fixed-cookie
(face-remap-add-relative
face :family fix-pitch :height fix-height)))
;; Change the cursor if the user requested:
(when mixed-pitch-variable-pitch-cursor (setq cursor-type mixed-pitch-variable-pitch-cursor)))
;; Turn mixed-pitch-mode off:
(progn (face-remap-remove-relative mixed-pitch-variable-cookie)
(dolist (cookie mixed-pitch-fixed-cookie)
(face-remap-remove-relative cookie))
;; Restore the cursor if we changed it:
(when mixed-pitch-variable-pitch-cursor
(setq cursor-type mixed-pitch-cursor-type))))))
(provide 'mixed-pitch)
;;; mixed-pitch.el ends here