Mercurial > emacs
annotate lisp/hi-lock.el @ 48113:6a09e4b41337
(unuse_menu_items): New fun.
(menu_items_inuse): New var.
(syms_of_xmenu): Initialize it.
(init_menu_items): Use it to detect re-entrance.
(Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset it when done.
(Fx_popup_menu): Remove spurious XSETFRAME.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 01 Nov 2002 20:11:39 +0000 |
parents | 4037178317df |
children | e96f9b3c1ad2 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36708
diff
changeset
|
1 ;;; hi-lock.el --- minor mode for interactive automatic highlighting |
30565 | 2 |
35779
1619fb3fdfa4
(hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
35215
diff
changeset
|
3 ;; Copyright (C) 2000, 2001 Free Software Foundation, Inc. |
30565 | 4 |
5 ;; Author: David M. Koppelman, koppel@ee.lsu.edu | |
6 ;; Keywords: faces, minor-mode, matching, display | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36708
diff
changeset
|
25 ;;; Commentary: |
30565 | 26 ;; |
27 ;; With the hi-lock commands text matching interactively entered | |
28 ;; regexp's can be highlighted. For example, `M-x highlight-regexp | |
29 ;; RET clearly RET RET' will highlight all occurrences of `clearly' | |
30 ;; using a yellow background face. New occurrences of `clearly' will | |
31 ;; be highlighted as they are typed. `M-x unhighlight-regexp RET' | |
32 ;; will remove the highlighting. Any existing face can be used for | |
33 ;; highlighting and a set of appropriate faces is provided. The | |
34 ;; regexps can be written into the current buffer in a form that will | |
35 ;; be recognized the next time the corresponding file is read. | |
36 ;; | |
37 ;; Applications: | |
38 ;; | |
39 ;; In program source code highlight a variable to quickly see all | |
40 ;; places it is modified or referenced: | |
41 ;; M-x highlight-regexp ground_contact_switches_closed RET RET | |
42 ;; | |
43 ;; In a shell or other buffer that is showing lots of program | |
44 ;; output, highlight the parts of the output you're interested in: | |
45 ;; M-x highlight-regexp Total execution time [0-9]+ RET hi-blue-b RET | |
46 ;; | |
47 ;; In buffers displaying tables, highlight the lines you're interested in: | |
48 ;; M-x highlight-lines-matching-regexp January 2000 RET hi-black-b RET | |
49 ;; | |
50 ;; When writing text, highlight personal cliches. This can be | |
51 ;; amusing. | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
52 ;; M-x highlight-phrase as can be seen RET RET |
30565 | 53 ;; |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
54 ;; Setup: |
30565 | 55 ;; |
56 ;; Put the following code in your .emacs file. This turns on | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
57 ;; hi-lock mode and adds a "Regexp Highlighting" entry |
30565 | 58 ;; to the edit menu. |
59 ;; | |
60 ;; (hi-lock-mode 1) | |
61 ;; | |
62 ;; You might also want to bind the hi-lock commands to more | |
63 ;; finger-friendly sequences: | |
64 | |
65 ;; (define-key hi-lock-map "\C-z\C-h" 'highlight-lines-matching-regexp) | |
66 ;; (define-key hi-lock-map "\C-zi" 'hi-lock-find-patterns) | |
67 ;; (define-key hi-lock-map "\C-zh" 'highlight-regexp) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
68 ;; (define-key hi-lock-map "\C-zp" 'highlight-phrase) |
30565 | 69 ;; (define-key hi-lock-map "\C-zr" 'unhighlight-regexp) |
70 ;; (define-key hi-lock-map "\C-zb" 'hi-lock-write-interactive-patterns)) | |
71 | |
72 ;; See the documentation for hi-lock-mode `C-h f hi-lock-mode' for | |
73 ;; additional instructions. | |
74 | |
75 ;; Sample file patterns: | |
76 | |
77 ; Hi-lock: (("^;;; .*" (0 (quote hi-black-hb) t))) | |
78 ; Hi-lock: ( ("make-variable-buffer-\\(local\\)" (0 font-lock-keyword-face)(1 'italic append))))) | |
79 ; Hi-lock: end | |
80 | |
81 ;;; Code: | |
82 | |
30584
b823f1c83a00
(toplevel): Require font-lock.
Eli Zaretskii <eliz@gnu.org>
parents:
30565
diff
changeset
|
83 (eval-and-compile |
30565 | 84 (require 'font-lock)) |
85 | |
86 ;;;###autoload | |
87 (defgroup hi-lock-interactive-text-highlighting nil | |
88 "Interactively add and remove font-lock patterns for highlighting text." | |
89 :group 'faces) | |
90 | |
91 ;;;###autoload | |
92 (defcustom hi-lock-mode nil | |
93 "Toggle hi-lock, for interactively adding font-lock text-highlighting patterns." | |
94 :set (lambda (symbol value) | |
95 (hi-lock-mode (or value 0))) | |
96 :initialize 'custom-initialize-default | |
97 :type 'boolean | |
98 :group 'hi-lock-interactive-text-highlighting | |
99 :require 'hi-lock) | |
100 | |
101 (defcustom hi-lock-file-patterns-range 10000 | |
102 "Limit of search in a buffer for hi-lock patterns. | |
103 When a file is visited and hi-lock mode is on patterns starting | |
104 up to this limit are added to font-lock's patterns. See documentation | |
105 of functions `hi-lock-mode' and `hi-lock-find-patterns'." | |
106 :type 'integer | |
107 :group 'hi-lock-interactive-text-highlighting) | |
108 | |
109 (defcustom hi-lock-exclude-modes | |
110 '(rmail-mode mime/viewer-mode gnus-article-mode) | |
111 "List of major modes in which hi-lock will not run. | |
112 For security reasons since font lock patterns can specify function | |
113 calls." | |
35215
2be11f207ca8
(hi-lock-exclude-modes): Fix :type.
Dave Love <fx@gnu.org>
parents:
33974
diff
changeset
|
114 :type '(repeat symbol) |
30565 | 115 :group 'hi-lock-interactive-text-highlighting) |
116 | |
117 | |
118 (defgroup hi-lock-faces nil | |
119 "Faces for hi-lock." | |
120 :group 'hi-lock-interactive-text-highlighting) | |
121 | |
122 (defface hi-yellow | |
33974 | 123 '((((background dark)) (:background "yellow" :foreground "black")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
124 (t (:background "yellow"))) |
30565 | 125 "Default face for hi-lock mode." |
126 :group 'hi-lock-faces) | |
127 | |
128 (defface hi-pink | |
33780
00803fb0f58e
(hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents:
31745
diff
changeset
|
129 '((((background dark)) (:background "pink" :foreground "black")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
130 (t (:background "pink"))) |
30565 | 131 "Face for hi-lock mode." |
132 :group 'hi-lock-faces) | |
133 | |
134 (defface hi-green | |
33780
00803fb0f58e
(hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents:
31745
diff
changeset
|
135 '((((background dark)) (:background "green" :foreground "black")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
136 (t (:background "green"))) |
30565 | 137 "Face for hi-lock mode." |
138 :group 'hi-lock-faces) | |
139 | |
140 (defface hi-blue | |
33780
00803fb0f58e
(hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents:
31745
diff
changeset
|
141 '((((background dark)) (:background "light blue" :foreground "black")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
142 (t (:background "light blue"))) |
30565 | 143 "Face for hi-lock mode." |
144 :group 'hi-lock-faces) | |
145 | |
146 (defface hi-black-b | |
147 '((t (:weight bold))) | |
148 "Face for hi-lock mode." | |
149 :group 'hi-lock-faces) | |
150 | |
151 (defface hi-blue-b | |
152 '((t (:weight bold :foreground "blue"))) | |
153 "Face for hi-lock mode." | |
154 :group 'hi-lock-faces) | |
155 | |
156 (defface hi-green-b | |
157 '((t (:weight bold :foreground "green"))) | |
158 "Face for hi-lock mode." | |
159 :group 'hi-lock-faces) | |
160 | |
161 (defface hi-red-b | |
162 '((t (:weight bold :foreground "red"))) | |
163 "Face for hi-lock mode." | |
164 :group 'hi-lock-faces) | |
165 | |
166 (defface hi-black-hb | |
31745 | 167 '((t (:weight bold :height 1.67 :inherit variable-pitch))) |
30565 | 168 "Face for hi-lock mode." |
169 :group 'hi-lock-faces) | |
170 | |
171 (defvar hi-lock-file-patterns nil | |
172 "Patterns found in file for hi-lock. Should not be changed.") | |
173 | |
174 (defvar hi-lock-interactive-patterns nil | |
175 "Patterns provided to hi-lock by user. Should not be changed.") | |
176 | |
177 (defvar hi-lock-face-history | |
178 (list "hi-yellow" "hi-pink" "hi-green" "hi-blue" "hi-black-b" | |
179 "hi-blue-b" "hi-red-b" "hi-green-b" "hi-black-hb") | |
180 "History list of faces for hi-lock interactive functions.") | |
181 | |
182 ;(dolist (f hi-lock-face-history) (unless (facep f) (error "%s not a face" f))) | |
183 | |
184 (defvar hi-lock-regexp-history nil | |
185 "History of regexps used for interactive fontification.") | |
186 | |
187 (defvar hi-lock-file-patterns-prefix "Hi-lock" | |
188 "Regexp for finding hi-lock patterns at top of file.") | |
189 | |
190 (make-variable-buffer-local 'hi-lock-interactive-patterns) | |
191 (put 'hi-lock-interactive-patterns 'permanent-local t) | |
192 (make-variable-buffer-local 'hi-lock-regexp-history) | |
193 (put 'hi-lock-regexp-history 'permanent-local t) | |
194 (make-variable-buffer-local 'hi-lock-file-patterns) | |
195 (put 'hi-lock-file-patterns 'permanent-local t) | |
196 | |
197 (defvar hi-lock-menu (make-sparse-keymap "Hi Lock") | |
198 "Menu for hi-lock mode.") | |
199 | |
200 (define-key-after hi-lock-menu [highlight-regexp] | |
201 '(menu-item "Highlight Regexp..." highlight-regexp | |
202 :help "Highlight text matching PATTERN (a regexp).")) | |
203 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
204 (define-key-after hi-lock-menu [highlight-phrase] |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
205 '(menu-item "Highlight Phrase..." highlight-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
206 :help "Highlight text matching PATTERN (a regexp processed to match phrases).")) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
207 |
30565 | 208 (define-key-after hi-lock-menu [highlight-lines-matching-regexp] |
209 '(menu-item "Highlight Lines..." highlight-lines-matching-regexp | |
210 :help "Highlight lines containing match of PATTERN (a regexp)..")) | |
211 | |
212 (define-key-after hi-lock-menu [unhighlight-regexp] | |
213 '(menu-item "Remove Highlighting..." unhighlight-regexp | |
214 :help "Remove previously entered highlighting pattern." | |
215 :enable hi-lock-interactive-patterns)) | |
216 | |
217 (define-key-after hi-lock-menu [hi-lock-write-interactive-patterns] | |
218 '(menu-item "Patterns to Buffer" hi-lock-write-interactive-patterns | |
219 :help "Insert interactively added REGEXPs into buffer at point." | |
220 :enable hi-lock-interactive-patterns)) | |
221 | |
222 (define-key-after hi-lock-menu [hi-lock-find-patterns] | |
223 '(menu-item "Patterns from Buffer" hi-lock-find-patterns | |
224 :help "Use patterns (if any) near top of buffer.")) | |
225 | |
226 (defvar hi-lock-map (make-sparse-keymap "Hi Lock") | |
227 "Key map for hi-lock.") | |
228 | |
229 (define-key hi-lock-map "\C-xwi" 'hi-lock-find-patterns) | |
230 (define-key hi-lock-map "\C-xwl" 'highlight-lines-matching-regexp) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
231 (define-key hi-lock-map "\C-xwp" 'highlight-phrase) |
30565 | 232 (define-key hi-lock-map "\C-xwh" 'highlight-regexp) |
233 (define-key hi-lock-map "\C-xwr" 'unhighlight-regexp) | |
234 (define-key hi-lock-map "\C-xwb" 'hi-lock-write-interactive-patterns) | |
235 | |
236 (unless (assq 'hi-lock-mode minor-mode-map-alist) | |
237 (setq minor-mode-map-alist (cons (cons 'hi-lock-mode hi-lock-map) | |
238 minor-mode-map-alist))) | |
239 | |
240 (unless (assq 'hi-lock-mode minor-mode-alist) | |
241 (setq minor-mode-alist (cons '(hi-lock-mode " H") minor-mode-alist))) | |
242 | |
243 | |
244 ;; Visible Functions | |
245 | |
246 | |
247 ;;;###autoload | |
248 (defun hi-lock-mode (&optional arg) | |
249 "Toggle minor mode for interactively adding font-lock highlighting patterns. | |
250 | |
251 If ARG positive turn hi-lock on. Issuing a hi-lock command will also | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
252 turn hi-lock on. When hi-lock is turned on, a \"Regexp Highlighting\" |
30565 | 253 submenu is added to the \"Edit\" menu. The commands in the submenu, |
254 which can be called interactively, are: | |
255 | |
256 \\[highlight-regexp] REGEXP FACE | |
257 Highlight matches of pattern REGEXP in current buffer with FACE. | |
258 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
259 \\[highlight-phrase] PHRASE FACE |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
260 Highlight matches of phrase PHRASE in current buffer with FACE. |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
261 (PHRASE can be any REGEXP, but spaces will be replaced by matches |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
262 to whitespace and initial lower-case letters will become case insensitive.) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
263 |
30565 | 264 \\[highlight-lines-matching-regexp] REGEXP FACE |
265 Highlight lines containing matches of REGEXP in current buffer with FACE. | |
266 | |
267 \\[unhighlight-regexp] REGEXP | |
268 Remove highlighting on matches of REGEXP in current buffer. | |
269 | |
270 \\[hi-lock-write-interactive-patterns] | |
271 Write active REGEXPs into buffer as comments (if possible). They will | |
272 be read the next time file is loaded or when the \\[hi-lock-find-patterns] command | |
273 is issued. The inserted regexps are in the form of font lock keywords. | |
274 (See `font-lock-keywords') They may be edited and re-loaded with \\[hi-lock-find-patterns], | |
275 any valid `font-lock-keywords' form is acceptable. | |
276 | |
277 \\[hi-lock-find-patterns] | |
278 Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]). | |
279 | |
280 When hi-lock is started and if the mode is not excluded, the | |
281 beginning of the buffer is searched for lines of the form: | |
282 Hi-lock: FOO | |
283 where FOO is a list of patterns. These are added to the font lock keywords | |
284 already present. The patterns must start before position (number | |
285 of characters into buffer) `hi-lock-file-patterns-range'. Patterns | |
286 will be read until | |
287 Hi-lock: end | |
288 is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'." | |
289 (interactive) | |
290 (let ((hi-lock-mode-prev hi-lock-mode)) | |
291 (setq hi-lock-mode | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
292 (if (null arg) (not hi-lock-mode) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
293 (> (prefix-numeric-value arg) 0))) |
30565 | 294 ;; Turned on. |
295 (when (and (not hi-lock-mode-prev) hi-lock-mode) | |
296 (add-hook 'find-file-hooks 'hi-lock-find-file-hook) | |
297 (add-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook) | |
298 (define-key-after menu-bar-edit-menu [hi-lock] | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
299 (cons "Regexp Highlighting" hi-lock-menu)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
300 (dolist (buffer (buffer-list)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
301 (with-current-buffer buffer (hi-lock-find-patterns)))) |
30565 | 302 ;; Turned off. |
303 (when (and hi-lock-mode-prev (not hi-lock-mode)) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
304 (dolist (buffer (buffer-list)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
305 (with-current-buffer buffer |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
306 (when (or hi-lock-interactive-patterns hi-lock-file-patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
307 (font-lock-remove-keywords nil hi-lock-interactive-patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
308 (font-lock-remove-keywords nil hi-lock-file-patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
309 (setq hi-lock-interactive-patterns nil |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
310 hi-lock-file-patterns nil) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
311 (when font-lock-mode (hi-lock-refontify))))) |
30565 | 312 (define-key-after menu-bar-edit-menu [hi-lock] nil) |
313 (remove-hook 'find-file-hooks 'hi-lock-find-file-hook) | |
314 (remove-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook)))) | |
315 | |
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) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
321 "Set face of all lines containing a match of REGEXP to FACE. |
30565 | 322 |
323 Interactively, prompt for REGEXP then FACE. Buffer-local history | |
324 list 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. | |
35779
1619fb3fdfa4
(hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
35215
diff
changeset
|
326 \(See info node `Minibuffer History')" |
30565 | 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))) | |
334 (unless hi-lock-mode (hi-lock-mode)) | |
335 (or (facep face) (setq face 'rwl-yellow)) | |
336 (hi-lock-set-pattern | |
36708
0e09b49d21b8
(hi-lock-line-face-buffer): Wrap the regexp in a group
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36357
diff
changeset
|
337 ;; The \\(?:...\\) grouping construct ensures that a leading ^, +, * or ? |
0e09b49d21b8
(hi-lock-line-face-buffer): Wrap the regexp in a group
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36357
diff
changeset
|
338 ;; or a trailing $ in REGEXP will be interpreted correctly. |
0e09b49d21b8
(hi-lock-line-face-buffer): Wrap the regexp in a group
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36357
diff
changeset
|
339 (list (concat "^.*\\(?:" regexp "\\).*$") (list 0 (list 'quote face) t)))) |
30565 | 340 |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
341 |
30565 | 342 ;;;###autoload |
343 (defalias 'highlight-regexp 'hi-lock-face-buffer) | |
344 ;;;###autoload | |
345 (defun hi-lock-face-buffer (regexp &optional face) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
346 "Set face of each match of REGEXP to FACE. |
30565 | 347 |
348 Interactively, prompt for REGEXP then FACE. Buffer-local history | |
349 list 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. | |
35779
1619fb3fdfa4
(hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
35215
diff
changeset
|
351 \(See info node `Minibuffer History')" |
30565 | 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)) | |
360 (unless hi-lock-mode (hi-lock-mode)) | |
361 (hi-lock-set-pattern (list regexp (list 0 (list 'quote face) t)))) | |
362 | |
363 ;;;###autoload | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
364 (defalias 'highlight-phrase 'hi-lock-face-phrase-buffer) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
365 ;;;###autoload |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
366 (defun hi-lock-face-phrase-buffer (regexp &optional face) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
367 "Set face of each match of phrase REGEXP to FACE. |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
368 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
369 Whitespace in REGEXP converted to arbitrary whitespace and initial |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
370 lower-case letters made case insensitive." |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
371 (interactive |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
372 (list |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
373 (hi-lock-regexp-okay |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
374 (hi-lock-process-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
375 (read-from-minibuffer "Phrase to highlight: " |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
376 (cons (or (car hi-lock-regexp-history) "") 1 ) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
377 nil nil 'hi-lock-regexp-history))) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
378 (hi-lock-read-face-name))) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
379 (or (facep face) (setq face 'rwl-yellow)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
380 (unless hi-lock-mode (hi-lock-mode)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
381 (hi-lock-set-pattern (list regexp (list 0 (list 'quote face) t)))) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
382 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
383 ;;;###autoload |
30565 | 384 (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) |
385 ;;;###autoload | |
386 (defun hi-lock-unface-buffer (regexp) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
387 "Remove highlighting of each match to REGEXP set by hi-lock. |
30565 | 388 |
389 Interactively, prompt for REGEXP. Buffer-local history of inserted | |
390 regexp's maintained. Will accept only regexps inserted by hi-lock | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
391 interactive functions. \(See `hi-lock-interactive-patterns'.\) |
30565 | 392 \\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp. |
30590
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
393 \(See info node `Minibuffer History'.\)" |
30565 | 394 (interactive |
39065
2428aa3cec41
Don't call x-popup-menu if display-popup-menus-p returns nil.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
395 (if (and (display-popup-menus-p) (vectorp (this-command-keys))) |
30590
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
396 (catch 'snafu |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
397 (or |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
398 (x-popup-menu |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
399 t |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
400 (cons |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
401 `keymap |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
402 (cons "Select Pattern to Unhighlight" |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
403 (mapcar (lambda (pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
404 (list (car pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
405 (format |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
406 "%s (%s)" (car pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
407 (symbol-name |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
408 (car |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
409 (cdr (car (cdr (car (cdr pattern)))))))) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
410 (cons nil nil) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
411 (car pattern))) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
412 hi-lock-interactive-patterns)))) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
413 ;; If the user clicks outside the menu, meaning that they |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
414 ;; change their mind, x-popup-menu returns nil, and |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
415 ;; interactive signals a wrong number of arguments error. |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
416 ;; To prevent that, we return an empty string, which will |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
417 ;; effectively disable the rest of the function. |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
418 (throw 'snafu '("")))) |
30565 | 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: " | |
36357
06ff4f3266f8
(hi-lock-unface-buffer): Use nil rather than t for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36062
diff
changeset
|
425 hi-lock-interactive-patterns nil t |
30565 | 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)) | |
433 (hi-lock-refontify)))) | |
434 | |
435 ;;;###autoload | |
436 (defun hi-lock-write-interactive-patterns () | |
437 "Write interactively added patterns, if any, into buffer at point. | |
438 | |
439 Interactively added patterns are those normally specified using | |
440 `highlight-regexp' and `highlight-lines-matching-regexp'; they can | |
441 be 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 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
457 (defun hi-lock-process-phrase (phrase) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
458 "Convert regexp PHRASE to a regexp that matches phrases. |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
459 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
460 Blanks in PHRASE replaced by regexp that matches arbitrary whitespace |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
461 and initial lower-case letters made case insensitive." |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
462 (let ((mod-phrase nil)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
463 (setq mod-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
464 (replace-regexp-in-string |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
465 "\\<[a-z]" (lambda (m) (format "[%s%s]" (upcase m) m)) phrase)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
466 (setq mod-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
467 (replace-regexp-in-string |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
468 "\\s-+" "[ \t\n]+" mod-phrase nil t)))) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
469 |
30565 | 470 (defun hi-lock-regexp-okay (regexp) |
471 "Return REGEXP if it appears suitable for a font-lock pattern. | |
472 | |
473 Otherwise signal an error. A pattern that matches the null string is | |
474 not 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 | |
495 (defun hi-lock-find-file-hook () | |
496 "Add hi-lock patterns, if present." | |
497 (hi-lock-find-patterns)) | |
498 | |
499 (defun hi-lock-current-line (&optional end) | |
500 "Return line number of line at point. | |
501 Optional argument END is maximum excursion." | |
502 (interactive) | |
503 (save-excursion | |
504 (beginning-of-line) | |
505 (1+ (count-lines 1 (or end (point)))))) | |
506 | |
507 (defun hi-lock-set-pattern (pattern) | |
508 "Add PATTERN to list of interactively highlighted patterns and refontify." | |
509 (hi-lock-set-patterns (list pattern))) | |
510 | |
511 (defun hi-lock-set-patterns (patterns) | |
512 "Add PATTERNS to list of interactively highlighted patterns and refontify.." | |
513 (dolist (pattern patterns) | |
514 (unless (member pattern hi-lock-interactive-patterns) | |
515 (font-lock-add-keywords nil (list pattern)) | |
516 (add-to-list 'hi-lock-interactive-patterns pattern))) | |
517 (hi-lock-refontify)) | |
518 | |
519 (defun hi-lock-set-file-patterns (patterns) | |
520 "Replace file patterns list with PATTERNS and refontify." | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
521 (when (or hi-lock-file-patterns patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
522 (font-lock-remove-keywords nil hi-lock-file-patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
523 (setq hi-lock-file-patterns patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
524 (font-lock-add-keywords nil hi-lock-file-patterns) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
525 (hi-lock-refontify))) |
30565 | 526 |
527 (defun hi-lock-refontify () | |
528 "Unfontify then refontify buffer. Used when hi-lock patterns change." | |
529 (interactive) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
530 (unless font-lock-mode (font-lock-mode 1)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
531 (font-lock-fontify-buffer)) |
30565 | 532 |
533 (defun hi-lock-find-patterns () | |
534 "Find patterns in current buffer for hi-lock." | |
535 (interactive) | |
536 (unless (memq major-mode hi-lock-exclude-modes) | |
537 (let ((all-patterns nil) | |
538 (target-regexp (concat "\\<" hi-lock-file-patterns-prefix ":"))) | |
539 (save-excursion | |
43052
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
540 (save-restriction |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
541 (widen) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
542 (goto-char (point-min)) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
543 (re-search-forward target-regexp |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
544 (+ (point) hi-lock-file-patterns-range) t) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
545 (beginning-of-line) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
546 (while (and (re-search-forward target-regexp (+ (point) 100) t) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
547 (not (looking-at "\\s-*end"))) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
548 (let ((patterns |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
549 (condition-case nil |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
550 (read (current-buffer)) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
551 (error (message |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
552 (format "Could not read expression at %d" |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
553 (hi-lock-current-line))) nil)))) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
554 (if patterns |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
555 (setq all-patterns (append patterns all-patterns))))))) |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
556 (when hi-lock-mode (hi-lock-set-file-patterns all-patterns)) |
30565 | 557 (if (interactive-p) |
558 (message (format "Hi-lock added %d patterns." (length all-patterns))))))) | |
559 | |
560 (defun hi-lock-font-lock-hook () | |
561 "Add hi lock patterns to font-lock's." | |
562 (when hi-lock-mode | |
563 (font-lock-add-keywords nil hi-lock-file-patterns) | |
564 (font-lock-add-keywords nil hi-lock-interactive-patterns))) | |
565 | |
566 (provide 'hi-lock) | |
567 | |
568 ;;; hi-lock.el ends here |