forked from ankurdave/color-identifiers-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor-identifiers-mode.el
384 lines (337 loc) · 15.9 KB
/
color-identifiers-mode.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
;;; color-identifiers-mode.el --- Color identifiers based on their names
;; Copyright (C) 2014 Ankur Dave
;; Author: Ankur Dave <[email protected]>
;; Url: https://github.com/ankurdave/color-identifiers-mode
;; Created: 24 Jan 2014
;; Version: 1.1
;; Keywords: faces, languages
;; Package-Requires: ((dash "2.5.0") (dash-functional "1.0.0") (emacs "24"))
;; This file is not a part of GNU Emacs.
;; 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:
;; Color Identifiers is a minor mode for Emacs that highlights each source code
;; identifier uniquely based on its name. It is inspired by a post by Evan
;; Brooks: https://medium.com/p/3a6db2743a1e/
;; Check out the project page, which has screenshots, a demo, and usage
;; instructions: https://github.com/ankurdave/color-identifiers-mode
;;; Code:
(require 'advice)
(require 'color)
(require 'dash)
(require 'dash-functional)
(require 'python)
(defvar color-identifiers:timer)
;;;###autoload
(define-minor-mode color-identifiers-mode
"Color the identifiers in the current buffer based on their names."
:init-value nil
:lighter " ColorIds"
(if color-identifiers-mode
(progn
(color-identifiers:regenerate-colors)
(color-identifiers:refresh)
(add-to-list 'font-lock-extra-managed-props 'color-identifiers:fontified)
(font-lock-add-keywords nil '((color-identifiers:colorize . default)) t)
(unless color-identifiers:timer
(setq color-identifiers:timer
(run-with-idle-timer 10 t 'color-identifiers:refresh)))
(ad-activate 'enable-theme))
(when color-identifiers:timer
(cancel-timer color-identifiers:timer))
(setq color-identifiers:timer nil)
(font-lock-remove-keywords nil '((color-identifiers:colorize . default)))
(ad-deactivate 'enable-theme))
(font-lock-fontify-buffer))
(defadvice enable-theme (after color-identifiers:regen-on-theme-change)
(color-identifiers:regenerate-colors))
;;; USER-VISIBLE VARIABLES AND FUNCTIONS =======================================
(defvar color-identifiers:modes-alist nil
"Alist of major modes and the ways to distinguish identifiers in those modes.
The value of each cons cell provides three constraints for finding identifiers.
A word must match all three constraints to be colored as an identifier. The
value has the form (IDENTIFIER-CONTEXT-RE IDENTIFIER-RE IDENTIFIER-FACES).
IDENTIFIER-CONTEXT-RE is a regexp matching the text that must precede an
identifier.
IDENTIFIER-RE is a regexp whose first capture group matches identifiers.
IDENTIFIER-FACES is a list of faces with which the major mode decorates
identifiers or a function returning such a list. If the list includes nil,
unfontified words will be considered.")
(defvar color-identifiers:num-colors 10
"The number of different colors to generate.")
(defvar color-identifiers:mode-to-scan-fn-alist nil
"Alist from major modes to their declaration scan functions, for internal use.
Modify this using `color-identifiers:set-declaration-scan-fn'.")
(defun color-identifiers:set-declaration-scan-fn (mode scan-fn)
"Register SCAN-FN as the declaration scanner for MODE.
SCAN-FN must scan the entire current buffer and return the
identifiers to highlight as a list of strings. See
`color-identifiers:elisp-get-declarations' for an example."
(let ((entry (assoc mode color-identifiers:mode-to-scan-fn-alist)))
(if entry
(setcdr entry scan-fn)
(add-to-list 'color-identifiers:mode-to-scan-fn-alist
(cons mode scan-fn)))))
;;; MAJOR MODE SUPPORT =========================================================
;; Scala
(add-to-list
'color-identifiers:modes-alist
`(scala-mode . ("[^.][[:space:]]*"
"\\_<\\([[:lower:]]\\([_]??[[:lower:][:upper:]\\$0-9]+\\)*\\(_+[#:<=>@!%&*+/?\\\\^|~-]+\\|_\\)?\\)"
(nil scala-font-lock:var-face font-lock-variable-name-face))))
;;; JavaScript
(add-to-list
'color-identifiers:modes-alist
`(js-mode . ("[^.][[:space:]]*"
"\\_<\\([a-zA-Z_$]\\(?:\\s_\\|\\sw\\)*\\)"
(nil font-lock-variable-name-face))))
(add-to-list
'color-identifiers:modes-alist
`(js2-mode . ("[^.][[:space:]]*"
"\\_<\\([a-zA-Z_$]\\(?:\\s_\\|\\sw\\)*\\)"
(nil font-lock-variable-name-face js2-function-param))))
;; Ruby
(add-to-list
'color-identifiers:modes-alist
`(ruby-mode . ("[^.][[:space:]]*" "\\_<\\([a-zA-Z_$]\\(?:\\s_\\|\\sw\\)*\\)" (nil))))
;; Python
(defun color-identifiers:python-get-declarations ()
"Extract a list of identifiers declared in the current buffer.
For Python support within color-identifiers-mode. Supports
function arguments and variable assignment, but not yet lambda
arguments, loops (for .. in), or for comprehensions."
(let ((result nil))
;; Function arguments
(save-excursion
(goto-char (point-min))
(while (python-nav-forward-defun)
(let ((arglist (sexp-at-point)))
(when arglist
(let* ((first-arg (car arglist))
(rest (cdr arglist))
(rest-args
(-map (lambda (token) (cadr token))
(-filter (lambda (token) (and (listp token) (eq (car token) '\,))) rest)))
(args-filtered (cons first-arg rest-args))
(params (-map (lambda (token)
(car (split-string (symbol-name token) "=")))
args-filtered)))
(setq result (append params result)))))))
;; Variables that python-mode highlighted with font-lock-variable-name-face
(save-excursion
(goto-char (point-min))
(catch 'end-of-file
(while t
(let ((next-change (next-property-change (point))))
(if (not next-change)
(throw 'end-of-file nil)
(goto-char next-change)
(when (or (eq (get-text-property (point) 'face) 'font-lock-variable-name-face)
;; If we fontified it in the past, assume it should
;; continue to be fontified. This avoids alternating
;; between fontified and unfontified.
(get-text-property (point) 'color-identifiers:fontified))
(push (substring-no-properties (symbol-name (symbol-at-point))) result)))))))
(delete-dups result)
result))
(color-identifiers:set-declaration-scan-fn
'python-mode 'color-identifiers:python-get-declarations)
(add-to-list
'color-identifiers:modes-alist
`(python-mode . ("[^.][[:space:]]*"
"\\_<\\([a-zA-Z_$]\\(?:\\s_\\|\\sw\\)*\\)"
(nil font-lock-type-face font-lock-variable-name-face))))
;; Emacs Lisp
(defun color-identifiers:declarations-in-sexp (sexp)
"Extract a list of identifiers declared in SEXP.
For Emacs Lisp support within color-identifiers-mode."
(pcase sexp
((or `(let . ,rest) `(let* . ,rest))
(append (when (listp (car rest)) (mapcar 'car (car rest)))
(color-identifiers:declarations-in-sexp rest)))
((or `(defun ,- ,args . ,rest) `(lambda ,args . ,rest))
(append (when (listp args) args)
(color-identifiers:declarations-in-sexp rest)))
(`nil nil)
(`(,a . ,b)
(append (color-identifiers:declarations-in-sexp a)
(color-identifiers:declarations-in-sexp b)))
(other-object nil)))
(defun color-identifiers:elisp-get-declarations ()
"Extract a list of identifiers declared in the current buffer.
For Emacs Lisp support within color-identifiers-mode."
(let ((result nil))
(save-excursion
(goto-char (point-min))
(condition-case nil
(while t
(let* ((sexp (read (current-buffer)))
(ids (color-identifiers:declarations-in-sexp sexp))
(strs (mapcar 'symbol-name ids)))
(setq result (append strs result))))
(end-of-file nil)))
(delete-dups result)
result))
(color-identifiers:set-declaration-scan-fn
'emacs-lisp-mode 'color-identifiers:elisp-get-declarations)
(add-to-list
'color-identifiers:modes-alist
`(emacs-lisp-mode . (""
"\\_<\\(\\(?:\\s_\\|\\sw\\)+\\)"
(nil))))
;;; PACKAGE INTERNALS ==========================================================
(defvar color-identifiers:timer nil
"Timer for running `color-identifiers:refresh'.")
(defvar-local color-identifiers:identifiers nil
"The set of identifiers in the current buffer, for internal use.")
(defvar color-identifiers:colors nil
"List of generated hex colors for internal use.")
(defun color-identifiers:get-declaration-scan-fn (mode)
"See `color-identifiers:set-declaration-scan-fn'."
(let ((entry (assoc mode color-identifiers:mode-to-scan-fn-alist)))
(if entry
(cdr entry)
nil)))
(defun color-identifiers:regenerate-colors ()
"Generate perceptually distinct colors with the same luminance in HSL space.
Colors are output to `color-identifiers:colors'."
(interactive)
(let* ((luminance (max 0.35 (min 0.8 (color-identifiers:attribute-luminance :foreground))))
(candidates '())
(chosens '())
(n 8)
(n-1 (float (1- n))))
;; Populate candidates with evenly spaced HSL colors with fixed luminance,
;; converted to LAB
(dotimes (h n)
(dotimes (s n)
(add-to-list
'candidates
(apply 'color-srgb-to-lab
(color-hsl-to-rgb (/ h n-1) (/ s n-1) luminance)))))
(let ((choose-candidate (lambda (candidate)
(delq candidate candidates)
(push candidate chosens))))
(setq color-identifiers:colors nil)
(funcall choose-candidate (car candidates))
(while (and candidates (< (length chosens) color-identifiers:num-colors))
(let* (;; For each remaining candidate, find the distance to the closest chosen
;; color
(min-dists (-map (lambda (candidate)
(cons candidate
(-min (-map (lambda (chosen)
(color-cie-de2000 candidate chosen))
chosens))))
candidates))
;; Take the candidate with the highest min distance
(best (-max-by (-on '> 'cdr) min-dists)))
(funcall choose-candidate (car best))))
(setq color-identifiers:colors
(-map (lambda (lab)
(apply 'color-rgb-to-hex (apply 'color-lab-to-srgb lab)))
chosens)))))
(defvar-local color-identifiers:color-index-for-identifier nil
"Alist of identifier-index pairs for internal use.
The index refers to `color-identifiers:colors'.")
(defvar-local color-identifiers:current-index 0
"Current color index for new identifiers, for internal use.
The index refers to `color-identifiers:colors'.")
(defun color-identifiers:attribute-luminance (attribute)
"Find the HSL luminance of the specified ATTRIBUTE on the default face."
(let ((rgb (color-name-to-rgb (face-attribute 'default attribute))))
(if rgb
(nth 2 (apply 'color-rgb-to-hsl rgb))
0.5)))
(defun color-identifiers:refresh ()
"Refresh `color-identifiers:color-index-for-identifier' from current buffer."
(interactive)
(when color-identifiers-mode
(if (color-identifiers:get-declaration-scan-fn major-mode)
(progn
(setq color-identifiers:identifiers
(funcall (color-identifiers:get-declaration-scan-fn major-mode)))
(setq color-identifiers:color-index-for-identifier
(-map-indexed (lambda (i identifier)
(cons identifier (% i color-identifiers:num-colors)))
color-identifiers:identifiers)))
(save-excursion
(goto-char (point-min))
(catch 'input-pending
(let ((i 0)
(n color-identifiers:num-colors)
(result nil))
(color-identifiers:scan-identifiers
(lambda (start end)
(let ((identifier (buffer-substring-no-properties start end)))
(unless (assoc-string identifier result)
(push (cons identifier (% i n)) result)
(setq i (1+ i)))))
(point-max)
(lambda () (if (input-pending-p) (throw 'input-pending nil) t)))
(setq color-identifiers:color-index-for-identifier result)))))
(font-lock-fontify-buffer)))
(defun color-identifiers:color-identifier (identifier)
"Look up or generate the hex color for IDENTIFIER.
IDENTIFIER is looked up in `color-identifiers:color-index-for-identifier' and
generated if not present there."
(unless (and color-identifiers:identifiers
(not (member identifier color-identifiers:identifiers)))
(let ((entry (assoc-string identifier color-identifiers:color-index-for-identifier)))
(if entry
(nth (cdr entry) color-identifiers:colors)
;; If not present, make a temporary color using the rotating index
(push (cons identifier (% color-identifiers:current-index
(length color-identifiers:colors)))
color-identifiers:color-index-for-identifier)
(setq color-identifiers:current-index
(1+ color-identifiers:current-index))))))
(defun color-identifiers:scan-identifiers (fn limit &optional continue-p)
"Run FN on all identifiers from point up to LIMIT.
Identifiers are defined by `color-identifiers:modes-alist'.
If supplied, iteration only continues if CONTINUE-P evaluates to true."
(let ((entry (assoc major-mode color-identifiers:modes-alist)))
(when entry
(let ((identifier-context-re (nth 1 entry))
(identifier-re (nth 2 entry))
(identifier-faces
(if (functionp (nth 3 entry))
(funcall (nth 3 entry))
(nth 3 entry))))
;; Skip forward to the next identifier that matches all three conditions
(condition-case nil
(while (and (< (point) limit)
(if continue-p (funcall continue-p) t))
(if (not (or (memq (get-text-property (point) 'face) identifier-faces)
(let ((flface-prop (get-text-property (point) 'font-lock-face)))
(and flface-prop (memq flface-prop identifier-faces)))
(get-text-property (point) 'color-identifiers:fontified)))
(goto-char (next-property-change (point) nil limit))
(if (not (and (looking-back identifier-context-re)
(looking-at identifier-re)))
(progn
(forward-char)
(re-search-forward identifier-re limit)
(goto-char (match-beginning 0)))
;; Found an identifier. Run `fn' on it
(funcall fn (match-beginning 1) (match-end 1))
(goto-char (match-end 1)))))
(search-failed nil))))))
(defun color-identifiers:colorize (limit)
(color-identifiers:scan-identifiers
(lambda (start end)
(let* ((identifier (buffer-substring-no-properties start end))
(hex (color-identifiers:color-identifier identifier)))
(when hex
(put-text-property start end 'face `(:foreground ,hex))
(put-text-property start end 'color-identifiers:fontified t))))
limit))
(provide 'color-identifiers-mode)
;;; color-identifiers-mode.el ends here