*** empty log message ***
[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
e4d59066 289 (unless font-lock-mode (font-lock-mode 1))
963b2040
CY
290 (define-key-after menu-bar-edit-menu [hi-lock]
291 (cons "Regexp Highlighting" hi-lock-menu))
292 (hi-lock-find-patterns)
e4d59066 293 (add-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook nil t))
abb2db1c 294 ;; Turned off.
e4d59066
CY
295 (when (or hi-lock-interactive-patterns
296 hi-lock-file-patterns)
297 (when hi-lock-interactive-patterns
298 (font-lock-remove-keywords nil hi-lock-interactive-patterns)
299 (setq hi-lock-interactive-patterns nil))
300 (when hi-lock-file-patterns
301 (font-lock-remove-keywords nil hi-lock-file-patterns)
302 (setq hi-lock-file-patterns nil))
303 (if font-lock-mode
304 (font-lock-fontify-buffer)))
963b2040
CY
305 (define-key-after menu-bar-edit-menu [hi-lock] nil)
306 (remove-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook t)))
abb2db1c 307
963b2040
CY
308;;;###autoload
309(define-global-minor-mode hi-lock-mode
310 hi-lock-buffer-mode turn-on-hi-lock-if-enabled
9cb4bb45 311 :group 'hi-lock)
963b2040
CY
312
313(defun turn-on-hi-lock-if-enabled ()
314 (unless (memq major-mode hi-lock-exclude-modes)
315 (hi-lock-buffer-mode 1)))
abb2db1c
GM
316
317;;;###autoload
318(defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer)
319;;;###autoload
320(defun hi-lock-line-face-buffer (regexp &optional face)
108ee42b 321 "Set face of all lines containing a match of REGEXP to FACE.
abb2db1c
GM
322
323Interactively, prompt for REGEXP then FACE. Buffer-local history
324list maintained for regexps, global history maintained for faces.
325\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
8564afc9 326\(See info node `Minibuffer History')"
abb2db1c
GM
327 (interactive
328 (list
329 (hi-lock-regexp-okay
330 (read-from-minibuffer "Regexp to highlight line: "
331 (cons (or (car hi-lock-regexp-history) "") 1 )
332 nil nil 'hi-lock-regexp-history))
333 (hi-lock-read-face-name)))
abb2db1c 334 (or (facep face) (setq face 'rwl-yellow))
963b2040 335 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
abb2db1c 336 (hi-lock-set-pattern
b18f5523
SM
337 ;; The \\(?:...\\) grouping construct ensures that a leading ^, +, * or ?
338 ;; or a trailing $ in REGEXP will be interpreted correctly.
963b2040 339 (concat "^.*\\(?:" regexp "\\).*$") face))
abb2db1c 340
108ee42b 341
abb2db1c
GM
342;;;###autoload
343(defalias 'highlight-regexp 'hi-lock-face-buffer)
344;;;###autoload
345(defun hi-lock-face-buffer (regexp &optional face)
108ee42b 346 "Set face of each match of REGEXP to FACE.
abb2db1c
GM
347
348Interactively, prompt for REGEXP then FACE. Buffer-local history
349list maintained for regexps, global history maintained for faces.
350\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
8564afc9 351\(See info node `Minibuffer History')"
abb2db1c
GM
352 (interactive
353 (list
354 (hi-lock-regexp-okay
355 (read-from-minibuffer "Regexp to highlight: "
356 (cons (or (car hi-lock-regexp-history) "") 1 )
357 nil nil 'hi-lock-regexp-history))
358 (hi-lock-read-face-name)))
359 (or (facep face) (setq face 'rwl-yellow))
963b2040
CY
360 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
361 (hi-lock-set-pattern regexp face))
abb2db1c 362
108ee42b
GM
363;;;###autoload
364(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer)
365;;;###autoload
366(defun hi-lock-face-phrase-buffer (regexp &optional face)
367 "Set face of each match of phrase REGEXP to FACE.
368
369Whitespace in REGEXP converted to arbitrary whitespace and initial
370lower-case letters made case insensitive."
371 (interactive
372 (list
373 (hi-lock-regexp-okay
374 (hi-lock-process-phrase
375 (read-from-minibuffer "Phrase to highlight: "
376 (cons (or (car hi-lock-regexp-history) "") 1 )
377 nil nil 'hi-lock-regexp-history)))
378 (hi-lock-read-face-name)))
379 (or (facep face) (setq face 'rwl-yellow))
963b2040
CY
380 (unless hi-lock-buffer-mode (hi-lock-buffer-mode 1))
381 (hi-lock-set-pattern regexp face))
108ee42b 382
abb2db1c
GM
383;;;###autoload
384(defalias 'unhighlight-regexp 'hi-lock-unface-buffer)
385;;;###autoload
386(defun hi-lock-unface-buffer (regexp)
108ee42b 387 "Remove highlighting of each match to REGEXP set by hi-lock.
abb2db1c
GM
388
389Interactively, prompt for REGEXP. Buffer-local history of inserted
390regexp's maintained. Will accept only regexps inserted by hi-lock
108ee42b 391interactive functions. \(See `hi-lock-interactive-patterns'.\)
abb2db1c 392\\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp.
cf667bc5 393\(See info node `Minibuffer History'.\)"
abb2db1c 394 (interactive
59b7ded8 395 (if (and (display-popup-menus-p) (vectorp (this-command-keys)))
cf667bc5
EZ
396 (catch 'snafu
397 (or
398 (x-popup-menu
399 t
400 (cons
401 `keymap
402 (cons "Select Pattern to Unhighlight"
403 (mapcar (lambda (pattern)
404 (list (car pattern)
405 (format
406 "%s (%s)" (car pattern)
407 (symbol-name
408 (car
409 (cdr (car (cdr (car (cdr pattern))))))))
410 (cons nil nil)
411 (car pattern)))
412 hi-lock-interactive-patterns))))
413 ;; If the user clicks outside the menu, meaning that they
414 ;; change their mind, x-popup-menu returns nil, and
415 ;; interactive signals a wrong number of arguments error.
416 ;; To prevent that, we return an empty string, which will
417 ;; effectively disable the rest of the function.
418 (throw 'snafu '(""))))
abb2db1c
GM
419 (let ((history-list (mapcar (lambda (p) (car p))
420 hi-lock-interactive-patterns)))
421 (unless hi-lock-interactive-patterns
422 (error "No highlighting to remove"))
423 (list
424 (completing-read "Regexp to unhighlight: "
932c309e 425 hi-lock-interactive-patterns nil t
abb2db1c
GM
426 (car (car hi-lock-interactive-patterns))
427 (cons 'history-list 1))))))
428 (let ((keyword (assoc regexp hi-lock-interactive-patterns)))
429 (when keyword
430 (font-lock-remove-keywords nil (list keyword))
431 (setq hi-lock-interactive-patterns
432 (delq keyword hi-lock-interactive-patterns))
e4d59066 433 (font-lock-fontify-buffer))))
abb2db1c
GM
434
435;;;###autoload
436(defun hi-lock-write-interactive-patterns ()
437 "Write interactively added patterns, if any, into buffer at point.
438
439Interactively added patterns are those normally specified using
440`highlight-regexp' and `highlight-lines-matching-regexp'; they can
441be found in variable `hi-lock-interactive-patterns'."
442 (interactive)
443 (let ((prefix (format "%s %s:" (or comment-start "") "Hi-lock")))
444 (when (> (+ (point) (length prefix)) hi-lock-file-patterns-range)
445 (beep)
446 (message
447 "Warning, inserted keywords not close enough to top of file."))
448 (mapcar
449 (lambda (pattern)
450 (insert (format "%s (%s) %s\n"
451 prefix (prin1-to-string pattern) (or comment-end ""))))
452 hi-lock-interactive-patterns)))
453
454
455;; Implementation Functions
456
108ee42b
GM
457(defun hi-lock-process-phrase (phrase)
458 "Convert regexp PHRASE to a regexp that matches phrases.
459
460Blanks in PHRASE replaced by regexp that matches arbitrary whitespace
461and initial lower-case letters made case insensitive."
462 (let ((mod-phrase nil))
463 (setq mod-phrase
464 (replace-regexp-in-string
465 "\\<[a-z]" (lambda (m) (format "[%s%s]" (upcase m) m)) phrase))
466 (setq mod-phrase
467 (replace-regexp-in-string
468 "\\s-+" "[ \t\n]+" mod-phrase nil t))))
469
abb2db1c
GM
470(defun hi-lock-regexp-okay (regexp)
471 "Return REGEXP if it appears suitable for a font-lock pattern.
472
473Otherwise signal an error. A pattern that matches the null string is
474not suitable."
475 (if (string-match regexp "")
476 (error "Regexp cannot match an empty string")
477 regexp))
478
479(defun hi-lock-read-face-name ()
480 "Read face name from minibuffer with completion and history."
481 (intern (completing-read
482 "Highlight using face: "
483 obarray 'facep t
484 (cons (car hi-lock-face-history)
485 (let ((prefix
486 (try-completion
487 (substring (car hi-lock-face-history) 0 1)
488 (mapcar (lambda (f) (cons f f))
489 hi-lock-face-history))))
490 (if (and (stringp prefix)
491 (not (equal prefix (car hi-lock-face-history))))
492 (length prefix) 0)))
493 '(hi-lock-face-history . 0))))
494
963b2040
CY
495(defun hi-lock-set-pattern (regexp face)
496 "Highlight REGEXP with face FACE."
497 (let ((pattern (list regexp (list 0 (list 'quote face) t))))
abb2db1c
GM
498 (unless (member pattern hi-lock-interactive-patterns)
499 (font-lock-add-keywords nil (list pattern))
963b2040
CY
500 (push pattern hi-lock-interactive-patterns)
501 (let ((buffer-undo-list t)
502 (inhibit-read-only t)
503 (mod (buffer-modified-p)))
504 (save-excursion
505 (goto-char (point-min))
506 (while (re-search-forward regexp (point-max) t)
507 (put-text-property
508 (match-beginning 0) (match-end 0) 'face face)
509 (goto-char (match-end 0))))
510 (set-buffer-modified-p mod)))))
abb2db1c
GM
511
512(defun hi-lock-set-file-patterns (patterns)
513 "Replace file patterns list with PATTERNS and refontify."
108ee42b
GM
514 (when (or hi-lock-file-patterns patterns)
515 (font-lock-remove-keywords nil hi-lock-file-patterns)
516 (setq hi-lock-file-patterns patterns)
517 (font-lock-add-keywords nil hi-lock-file-patterns)
e4d59066 518 (font-lock-fontify-buffer)))
abb2db1c
GM
519
520(defun hi-lock-find-patterns ()
521 "Find patterns in current buffer for hi-lock."
522 (interactive)
523 (unless (memq major-mode hi-lock-exclude-modes)
524 (let ((all-patterns nil)
525 (target-regexp (concat "\\<" hi-lock-file-patterns-prefix ":")))
526 (save-excursion
62cec9fe
SM
527 (save-restriction
528 (widen)
529 (goto-char (point-min))
530 (re-search-forward target-regexp
531 (+ (point) hi-lock-file-patterns-range) t)
532 (beginning-of-line)
533 (while (and (re-search-forward target-regexp (+ (point) 100) t)
534 (not (looking-at "\\s-*end")))
ed6773fa
JB
535 (condition-case nil
536 (setq all-patterns (append (read (current-buffer)) all-patterns))
537 (error (message "Invalid pattern list expression at %d"
963b2040
CY
538 (line-number-at-pos)))))))
539 (when hi-lock-buffer-mode (hi-lock-set-file-patterns all-patterns))
abb2db1c 540 (if (interactive-p)
8a26c165 541 (message "Hi-lock added %d patterns." (length all-patterns))))))
abb2db1c
GM
542
543(defun hi-lock-font-lock-hook ()
544 "Add hi lock patterns to font-lock's."
e4d59066
CY
545 (if font-lock-mode
546 (progn (font-lock-add-keywords nil hi-lock-file-patterns)
547 (font-lock-add-keywords nil hi-lock-interactive-patterns))
548 (hi-lock-buffer-mode -1)))
abb2db1c
GM
549
550(provide 'hi-lock)
551
ffc30f4f 552;; arch-tag: d2e8fd07-4cc9-4c6f-a200-1e729bc54066
abb2db1c 553;;; hi-lock.el ends here