Fix two omissions in last change.
[bpt/emacs.git] / lisp / hi-lock.el
CommitLineData
e8af40ee 1;;; hi-lock.el --- minor mode for interactive automatic highlighting
abb2db1c 2
0d30b337
TTN
3;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
4;; 2005 Free Software Foundation, Inc.
abb2db1c
GM
5
6;; Author: David M. Koppelman, koppel@ee.lsu.edu
7;; Keywords: faces, minor-mode, matching, display
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
abb2db1c 25
e8af40ee 26;;; Commentary:
71296446 27;;
abb2db1c
GM
28;; With the hi-lock commands text matching interactively entered
29;; regexp's can be highlighted. For example, `M-x highlight-regexp
30;; RET clearly RET RET' will highlight all occurrences of `clearly'
31;; using a yellow background face. New occurrences of `clearly' will
32;; be highlighted as they are typed. `M-x unhighlight-regexp RET'
33;; will remove the highlighting. Any existing face can be used for
34;; highlighting and a set of appropriate faces is provided. The
35;; regexps can be written into the current buffer in a form that will
36;; be recognized the next time the corresponding file is read.
37;;
38;; Applications:
39;;
40;; In program source code highlight a variable to quickly see all
41;; places it is modified or referenced:
42;; M-x highlight-regexp ground_contact_switches_closed RET RET
43;;
44;; In a shell or other buffer that is showing lots of program
45;; output, highlight the parts of the output you're interested in:
46;; M-x highlight-regexp Total execution time [0-9]+ RET hi-blue-b RET
47;;
48;; In buffers displaying tables, highlight the lines you're interested in:
49;; M-x highlight-lines-matching-regexp January 2000 RET hi-black-b RET
50;;
51;; When writing text, highlight personal cliches. This can be
52;; amusing.
108ee42b 53;; M-x highlight-phrase as can be seen RET RET
abb2db1c 54;;
108ee42b 55;; Setup:
abb2db1c
GM
56;;
57;; Put the following code in your .emacs file. This turns on
108ee42b 58;; hi-lock mode and adds a "Regexp Highlighting" entry
abb2db1c
GM
59;; to the edit menu.
60;;
61;; (hi-lock-mode 1)
71296446 62;;
abb2db1c
GM
63;; You might also want to bind the hi-lock commands to more
64;; finger-friendly sequences:
65
66;; (define-key hi-lock-map "\C-z\C-h" 'highlight-lines-matching-regexp)
67;; (define-key hi-lock-map "\C-zi" 'hi-lock-find-patterns)
68;; (define-key hi-lock-map "\C-zh" 'highlight-regexp)
108ee42b 69;; (define-key hi-lock-map "\C-zp" 'highlight-phrase)
abb2db1c
GM
70;; (define-key hi-lock-map "\C-zr" 'unhighlight-regexp)
71;; (define-key hi-lock-map "\C-zb" 'hi-lock-write-interactive-patterns))
72
73;; See the documentation for hi-lock-mode `C-h f hi-lock-mode' for
74;; additional instructions.
75
76;; Sample file patterns:
77
78; Hi-lock: (("^;;; .*" (0 (quote hi-black-hb) t)))
79; Hi-lock: ( ("make-variable-buffer-\\(local\\)" (0 font-lock-keyword-face)(1 'italic append)))))
80; Hi-lock: end
81
82;;; Code:
83
588aca27 84(eval-and-compile
abb2db1c
GM
85 (require 'font-lock))
86
f43eaaef 87(defgroup hi-lock nil
abb2db1c 88 "Interactively add and remove font-lock patterns for highlighting text."
f43eaaef
JL
89 :link '(custom-manual "(emacs)Highlight Interactively")
90 :group 'font-lock)
abb2db1c 91
abb2db1c
GM
92(defcustom hi-lock-file-patterns-range 10000
93 "Limit of search in a buffer for hi-lock patterns.
94When a file is visited and hi-lock mode is on patterns starting
95up to this limit are added to font-lock's patterns. See documentation
96of functions `hi-lock-mode' and `hi-lock-find-patterns'."
97 :type 'integer
f43eaaef 98 :group 'hi-lock)
abb2db1c
GM
99
100(defcustom hi-lock-exclude-modes
101 '(rmail-mode mime/viewer-mode gnus-article-mode)
102 "List of major modes in which hi-lock will not run.
103For security reasons since font lock patterns can specify function
104calls."
f5bd8092 105 :type '(repeat symbol)
f43eaaef 106 :group 'hi-lock)
abb2db1c
GM
107
108
109(defgroup hi-lock-faces nil
110 "Faces for hi-lock."
f43eaaef
JL
111 :group 'hi-lock
112 :group 'faces)
abb2db1c
GM
113
114(defface hi-yellow
e0d815a2 115 '((((min-colors 88) (background dark))
ea81d57e
DN
116 (:background "yellow1" :foreground "black"))
117 (((background dark)) (:background "yellow" :foreground "black"))
118 (((min-colors 88)) (:background "yellow1"))
a0b8c939 119 (t (:background "yellow")))
abb2db1c
GM
120 "Default face for hi-lock mode."
121 :group 'hi-lock-faces)
122
123(defface hi-pink
16cdf141 124 '((((background dark)) (:background "pink" :foreground "black"))
a0b8c939 125 (t (:background "pink")))
abb2db1c
GM
126 "Face for hi-lock mode."
127 :group 'hi-lock-faces)
128
129(defface hi-green
e0d815a2 130 '((((min-colors 88) (background dark))
ea81d57e
DN
131 (:background "green1" :foreground "black"))
132 (((background dark)) (:background "green" :foreground "black"))
e0d815a2 133 (((min-colors 88)) (:background "green1"))
a0b8c939 134 (t (:background "green")))
abb2db1c
GM
135 "Face for hi-lock mode."
136 :group 'hi-lock-faces)
137
138(defface hi-blue
16cdf141 139 '((((background dark)) (:background "light blue" :foreground "black"))
a0b8c939 140 (t (:background "light blue")))
abb2db1c
GM
141 "Face for hi-lock mode."
142 :group 'hi-lock-faces)
143
144(defface hi-black-b
145 '((t (:weight bold)))
146 "Face for hi-lock mode."
147 :group 'hi-lock-faces)
148
149(defface hi-blue-b
ea81d57e
DN
150 '((((min-colors 88)) (:weight bold :foreground "blue1"))
151 (t (:weight bold :foreground "blue")))
abb2db1c
GM
152 "Face for hi-lock mode."
153 :group 'hi-lock-faces)
154
155(defface hi-green-b
ea81d57e
DN
156 '((((min-colors 88)) (:weight bold :foreground "green1"))
157 (t (:weight bold :foreground "green")))
abb2db1c
GM
158 "Face for hi-lock mode."
159 :group 'hi-lock-faces)
160
161(defface hi-red-b
ea81d57e
DN
162 '((((min-colors 88)) (:weight bold :foreground "red1"))
163 (t (:weight bold :foreground "red")))
abb2db1c
GM
164 "Face for hi-lock mode."
165 :group 'hi-lock-faces)
166
167(defface hi-black-hb
c3b27206 168 '((t (:weight bold :height 1.67 :inherit variable-pitch)))
abb2db1c
GM
169 "Face for hi-lock mode."
170 :group 'hi-lock-faces)
171
172(defvar hi-lock-file-patterns nil
173 "Patterns found in file for hi-lock. Should not be changed.")
174
175(defvar hi-lock-interactive-patterns nil
176 "Patterns provided to hi-lock by user. Should not be changed.")
177
178(defvar hi-lock-face-history
179 (list "hi-yellow" "hi-pink" "hi-green" "hi-blue" "hi-black-b"
180 "hi-blue-b" "hi-red-b" "hi-green-b" "hi-black-hb")
181 "History list of faces for hi-lock interactive functions.")
182
183;(dolist (f hi-lock-face-history) (unless (facep f) (error "%s not a face" f)))
184
185(defvar hi-lock-regexp-history nil
186 "History of regexps used for interactive fontification.")
187
188(defvar hi-lock-file-patterns-prefix "Hi-lock"
189 "Regexp for finding hi-lock patterns at top of file.")
190
191(make-variable-buffer-local 'hi-lock-interactive-patterns)
192(put 'hi-lock-interactive-patterns 'permanent-local t)
193(make-variable-buffer-local 'hi-lock-regexp-history)
194(put 'hi-lock-regexp-history 'permanent-local t)
195(make-variable-buffer-local 'hi-lock-file-patterns)
196(put 'hi-lock-file-patterns 'permanent-local t)
197
198(defvar hi-lock-menu (make-sparse-keymap "Hi Lock")
199 "Menu for hi-lock mode.")
200
201(define-key-after hi-lock-menu [highlight-regexp]
202 '(menu-item "Highlight Regexp..." highlight-regexp
203 :help "Highlight text matching PATTERN (a regexp)."))
204
108ee42b
GM
205(define-key-after hi-lock-menu [highlight-phrase]
206 '(menu-item "Highlight Phrase..." highlight-phrase
207 :help "Highlight text matching PATTERN (a regexp processed to match phrases)."))
208
abb2db1c
GM
209(define-key-after hi-lock-menu [highlight-lines-matching-regexp]
210 '(menu-item "Highlight Lines..." highlight-lines-matching-regexp
211 :help "Highlight lines containing match of PATTERN (a regexp).."))
212
213(define-key-after hi-lock-menu [unhighlight-regexp]
214 '(menu-item "Remove Highlighting..." unhighlight-regexp
215 :help "Remove previously entered highlighting pattern."
216 :enable hi-lock-interactive-patterns))
217
218(define-key-after hi-lock-menu [hi-lock-write-interactive-patterns]
219 '(menu-item "Patterns to Buffer" hi-lock-write-interactive-patterns
220 :help "Insert interactively added REGEXPs into buffer at point."
221 :enable hi-lock-interactive-patterns))
222
223(define-key-after hi-lock-menu [hi-lock-find-patterns]
224 '(menu-item "Patterns from Buffer" hi-lock-find-patterns
225 :help "Use patterns (if any) near top of buffer."))
226
227(defvar hi-lock-map (make-sparse-keymap "Hi Lock")
228 "Key map for hi-lock.")
229
230(define-key hi-lock-map "\C-xwi" 'hi-lock-find-patterns)
231(define-key hi-lock-map "\C-xwl" 'highlight-lines-matching-regexp)
108ee42b 232(define-key hi-lock-map "\C-xwp" 'highlight-phrase)
abb2db1c
GM
233(define-key hi-lock-map "\C-xwh" 'highlight-regexp)
234(define-key hi-lock-map "\C-xwr" 'unhighlight-regexp)
235(define-key hi-lock-map "\C-xwb" 'hi-lock-write-interactive-patterns)
236
abb2db1c
GM
237;; Visible Functions
238
239
240;;;###autoload
963b2040 241(define-minor-mode hi-lock-buffer-mode
abb2db1c
GM
242 "Toggle minor mode for interactively adding font-lock highlighting patterns.
243
244If ARG positive turn hi-lock on. Issuing a hi-lock command will also
108ee42b 245turn hi-lock on. When hi-lock is turned on, a \"Regexp Highlighting\"
abb2db1c
GM
246submenu is added to the \"Edit\" menu. The commands in the submenu,
247which can be called interactively, are:
248
249\\[highlight-regexp] REGEXP FACE
250 Highlight matches of pattern REGEXP in current buffer with FACE.
251
108ee42b
GM
252\\[highlight-phrase] PHRASE FACE
253 Highlight matches of phrase PHRASE in current buffer with FACE.
254 (PHRASE can be any REGEXP, but spaces will be replaced by matches
255 to whitespace and initial lower-case letters will become case insensitive.)
71296446 256
abb2db1c
GM
257\\[highlight-lines-matching-regexp] REGEXP FACE
258 Highlight lines containing matches of REGEXP in current buffer with FACE.
259
260\\[unhighlight-regexp] REGEXP
261 Remove highlighting on matches of REGEXP in current buffer.
262
263\\[hi-lock-write-interactive-patterns]
264 Write active REGEXPs into buffer as comments (if possible). They will
265 be read the next time file is loaded or when the \\[hi-lock-find-patterns] command
266 is issued. The inserted regexps are in the form of font lock keywords.
267 (See `font-lock-keywords') They may be edited and re-loaded with \\[hi-lock-find-patterns],
268 any valid `font-lock-keywords' form is acceptable.
269
270\\[hi-lock-find-patterns]
271 Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]).
272
273When hi-lock is started and if the mode is not excluded, the
274beginning of the buffer is searched for lines of the form:
275 Hi-lock: FOO
276where FOO is a list of patterns. These are added to the font lock keywords
277already present. The patterns must start before position (number
278of characters into buffer) `hi-lock-file-patterns-range'. Patterns
279will be read until
280 Hi-lock: end
281is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'."
963b2040
CY
282 :group 'hi-lock
283 :lighter " H"
284 :global nil
285 :keymap hi-lock-map
286 (if hi-lock-buffer-mode
287 ;; Turned on.
288 (progn
289 (define-key-after menu-bar-edit-menu [hi-lock]
290 (cons "Regexp Highlighting" hi-lock-menu))
291 (hi-lock-find-patterns)
292 (add-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook t))
abb2db1c 293 ;; Turned off.
963b2040
CY
294 (when hi-lock-interactive-patterns
295 (font-lock-remove-keywords nil hi-lock-interactive-patterns)
296 (setq hi-lock-interactive-patterns nil))
297 (when hi-lock-file-patterns
298 (font-lock-remove-keywords nil hi-lock-file-patterns)
299 (setq hi-lock-file-patterns nil))
ae34cba1 300 (hi-lock-refontify)
963b2040
CY
301 (define-key-after menu-bar-edit-menu [hi-lock] nil)
302 (remove-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook t)))
abb2db1c 303
963b2040
CY
304;;;###autoload
305(define-global-minor-mode hi-lock-mode
306 hi-lock-buffer-mode turn-on-hi-lock-if-enabled
307 :group 'hi-lock-interactive-text-highlighting)
308
309(defun turn-on-hi-lock-if-enabled ()
310 (unless (memq major-mode hi-lock-exclude-modes)
311 (hi-lock-buffer-mode 1)))
abb2db1c
GM
312
313;;;###autoload
314(defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer)
315;;;###autoload
316(defun hi-lock-line-face-buffer (regexp &optional face)
108ee42b 317 "Set face of all lines containing a match of REGEXP to FACE.
abb2db1c
GM
318
319Interactively, prompt for REGEXP then FACE. Buffer-local history
320list maintained for regexps, global history maintained for faces.
321\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
8564afc9 322\(See info node `Minibuffer History')"
abb2db1c
GM
323 (interactive
324 (list
325 (hi-lock-regexp-okay
326 (read-from-minibuffer "Regexp to highlight line: "
327 (cons (or (car hi-lock-regexp-history) "") 1 )
328 nil nil 'hi-lock-regexp-history))
329 (hi-lock-read-face-name)))
abb2db1c 330 (or (facep face) (setq face 'rwl-yellow))
963b2040 331 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
abb2db1c 332 (hi-lock-set-pattern
b18f5523
SM
333 ;; The \\(?:...\\) grouping construct ensures that a leading ^, +, * or ?
334 ;; or a trailing $ in REGEXP will be interpreted correctly.
963b2040 335 (concat "^.*\\(?:" regexp "\\).*$") face))
abb2db1c 336
108ee42b 337
abb2db1c
GM
338;;;###autoload
339(defalias 'highlight-regexp 'hi-lock-face-buffer)
340;;;###autoload
341(defun hi-lock-face-buffer (regexp &optional face)
108ee42b 342 "Set face of each match of REGEXP to FACE.
abb2db1c
GM
343
344Interactively, prompt for REGEXP then FACE. Buffer-local history
345list maintained for regexps, global history maintained for faces.
346\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
8564afc9 347\(See info node `Minibuffer History')"
abb2db1c
GM
348 (interactive
349 (list
350 (hi-lock-regexp-okay
351 (read-from-minibuffer "Regexp to highlight: "
352 (cons (or (car hi-lock-regexp-history) "") 1 )
353 nil nil 'hi-lock-regexp-history))
354 (hi-lock-read-face-name)))
355 (or (facep face) (setq face 'rwl-yellow))
963b2040
CY
356 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
357 (hi-lock-set-pattern regexp face))
abb2db1c 358
108ee42b
GM
359;;;###autoload
360(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer)
361;;;###autoload
362(defun hi-lock-face-phrase-buffer (regexp &optional face)
363 "Set face of each match of phrase REGEXP to FACE.
364
365Whitespace in REGEXP converted to arbitrary whitespace and initial
366lower-case letters made case insensitive."
367 (interactive
368 (list
369 (hi-lock-regexp-okay
370 (hi-lock-process-phrase
371 (read-from-minibuffer "Phrase to highlight: "
372 (cons (or (car hi-lock-regexp-history) "") 1 )
373 nil nil 'hi-lock-regexp-history)))
374 (hi-lock-read-face-name)))
375 (or (facep face) (setq face 'rwl-yellow))
963b2040
CY
376 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
377 (hi-lock-set-pattern regexp face))
108ee42b 378
abb2db1c
GM
379;;;###autoload
380(defalias 'unhighlight-regexp 'hi-lock-unface-buffer)
381;;;###autoload
382(defun hi-lock-unface-buffer (regexp)
108ee42b 383 "Remove highlighting of each match to REGEXP set by hi-lock.
abb2db1c
GM
384
385Interactively, prompt for REGEXP. Buffer-local history of inserted
386regexp's maintained. Will accept only regexps inserted by hi-lock
108ee42b 387interactive functions. \(See `hi-lock-interactive-patterns'.\)
abb2db1c 388\\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp.
cf667bc5 389\(See info node `Minibuffer History'.\)"
abb2db1c 390 (interactive
59b7ded8 391 (if (and (display-popup-menus-p) (vectorp (this-command-keys)))
cf667bc5
EZ
392 (catch 'snafu
393 (or
394 (x-popup-menu
395 t
396 (cons
397 `keymap
398 (cons "Select Pattern to Unhighlight"
399 (mapcar (lambda (pattern)
400 (list (car pattern)
401 (format
402 "%s (%s)" (car pattern)
403 (symbol-name
404 (car
405 (cdr (car (cdr (car (cdr pattern))))))))
406 (cons nil nil)
407 (car pattern)))
408 hi-lock-interactive-patterns))))
409 ;; If the user clicks outside the menu, meaning that they
410 ;; change their mind, x-popup-menu returns nil, and
411 ;; interactive signals a wrong number of arguments error.
412 ;; To prevent that, we return an empty string, which will
413 ;; effectively disable the rest of the function.
414 (throw 'snafu '(""))))
abb2db1c
GM
415 (let ((history-list (mapcar (lambda (p) (car p))
416 hi-lock-interactive-patterns)))
417 (unless hi-lock-interactive-patterns
418 (error "No highlighting to remove"))
419 (list
420 (completing-read "Regexp to unhighlight: "
932c309e 421 hi-lock-interactive-patterns nil t
abb2db1c
GM
422 (car (car hi-lock-interactive-patterns))
423 (cons 'history-list 1))))))
424 (let ((keyword (assoc regexp hi-lock-interactive-patterns)))
425 (when keyword
426 (font-lock-remove-keywords nil (list keyword))
427 (setq hi-lock-interactive-patterns
428 (delq keyword hi-lock-interactive-patterns))
429 (hi-lock-refontify))))
430
431;;;###autoload
432(defun hi-lock-write-interactive-patterns ()
433 "Write interactively added patterns, if any, into buffer at point.
434
435Interactively added patterns are those normally specified using
436`highlight-regexp' and `highlight-lines-matching-regexp'; they can
437be found in variable `hi-lock-interactive-patterns'."
438 (interactive)
439 (let ((prefix (format "%s %s:" (or comment-start "") "Hi-lock")))
440 (when (> (+ (point) (length prefix)) hi-lock-file-patterns-range)
441 (beep)
442 (message
443 "Warning, inserted keywords not close enough to top of file."))
444 (mapcar
445 (lambda (pattern)
446 (insert (format "%s (%s) %s\n"
447 prefix (prin1-to-string pattern) (or comment-end ""))))
448 hi-lock-interactive-patterns)))
449
450
451;; Implementation Functions
452
108ee42b
GM
453(defun hi-lock-process-phrase (phrase)
454 "Convert regexp PHRASE to a regexp that matches phrases.
455
456Blanks in PHRASE replaced by regexp that matches arbitrary whitespace
457and initial lower-case letters made case insensitive."
458 (let ((mod-phrase nil))
459 (setq mod-phrase
460 (replace-regexp-in-string
461 "\\<[a-z]" (lambda (m) (format "[%s%s]" (upcase m) m)) phrase))
462 (setq mod-phrase
463 (replace-regexp-in-string
464 "\\s-+" "[ \t\n]+" mod-phrase nil t))))
465
abb2db1c
GM
466(defun hi-lock-regexp-okay (regexp)
467 "Return REGEXP if it appears suitable for a font-lock pattern.
468
469Otherwise signal an error. A pattern that matches the null string is
470not suitable."
471 (if (string-match regexp "")
472 (error "Regexp cannot match an empty string")
473 regexp))
474
475(defun hi-lock-read-face-name ()
476 "Read face name from minibuffer with completion and history."
477 (intern (completing-read
478 "Highlight using face: "
479 obarray 'facep t
480 (cons (car hi-lock-face-history)
481 (let ((prefix
482 (try-completion
483 (substring (car hi-lock-face-history) 0 1)
484 (mapcar (lambda (f) (cons f f))
485 hi-lock-face-history))))
486 (if (and (stringp prefix)
487 (not (equal prefix (car hi-lock-face-history))))
488 (length prefix) 0)))
489 '(hi-lock-face-history . 0))))
490
963b2040
CY
491(defun hi-lock-set-pattern (regexp face)
492 "Highlight REGEXP with face FACE."
493 (let ((pattern (list regexp (list 0 (list 'quote face) t))))
abb2db1c
GM
494 (unless (member pattern hi-lock-interactive-patterns)
495 (font-lock-add-keywords nil (list pattern))
963b2040
CY
496 (push pattern hi-lock-interactive-patterns)
497 (let ((buffer-undo-list t)
498 (inhibit-read-only t)
499 (mod (buffer-modified-p)))
500 (save-excursion
501 (goto-char (point-min))
502 (while (re-search-forward regexp (point-max) t)
503 (put-text-property
504 (match-beginning 0) (match-end 0) 'face face)
505 (goto-char (match-end 0))))
506 (set-buffer-modified-p mod)))))
abb2db1c
GM
507
508(defun hi-lock-set-file-patterns (patterns)
509 "Replace file patterns list with PATTERNS and refontify."
108ee42b
GM
510 (when (or hi-lock-file-patterns patterns)
511 (font-lock-remove-keywords nil hi-lock-file-patterns)
512 (setq hi-lock-file-patterns patterns)
513 (font-lock-add-keywords nil hi-lock-file-patterns)
514 (hi-lock-refontify)))
abb2db1c
GM
515
516(defun hi-lock-refontify ()
517 "Unfontify then refontify buffer. Used when hi-lock patterns change."
518 (interactive)
ae34cba1
CY
519 (if font-lock-mode
520 (font-lock-fontify-buffer)))
abb2db1c
GM
521
522(defun hi-lock-find-patterns ()
523 "Find patterns in current buffer for hi-lock."
524 (interactive)
525 (unless (memq major-mode hi-lock-exclude-modes)
526 (let ((all-patterns nil)
527 (target-regexp (concat "\\<" hi-lock-file-patterns-prefix ":")))
528 (save-excursion
62cec9fe
SM
529 (save-restriction
530 (widen)
531 (goto-char (point-min))
532 (re-search-forward target-regexp
533 (+ (point) hi-lock-file-patterns-range) t)
534 (beginning-of-line)
535 (while (and (re-search-forward target-regexp (+ (point) 100) t)
536 (not (looking-at "\\s-*end")))
ed6773fa
JB
537 (condition-case nil
538 (setq all-patterns (append (read (current-buffer)) all-patterns))
539 (error (message "Invalid pattern list expression at %d"
963b2040
CY
540 (line-number-at-pos)))))))
541 (when hi-lock-buffer-mode (hi-lock-set-file-patterns all-patterns))
abb2db1c 542 (if (interactive-p)
8a26c165 543 (message "Hi-lock added %d patterns." (length all-patterns))))))
abb2db1c
GM
544
545(defun hi-lock-font-lock-hook ()
546 "Add hi lock patterns to font-lock's."
963b2040 547 (when font-lock-mode
abb2db1c
GM
548 (font-lock-add-keywords nil hi-lock-file-patterns)
549 (font-lock-add-keywords nil hi-lock-interactive-patterns)))
550
551(provide 'hi-lock)
552
ffc30f4f 553;; arch-tag: d2e8fd07-4cc9-4c6f-a200-1e729bc54066
abb2db1c 554;;; hi-lock.el ends here