Mercurial > emacs
annotate lisp/hi-lock.el @ 67767:f4a3c7808545
(vc-annotate-car-last-cons): Defn moved up.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 23 Dec 2005 16:22:31 +0000 |
parents | fd7c898ab005 |
children | edd5b99fd103 |
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 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64117
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, |
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64117
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
30565 | 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 | |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
30565 | 25 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36708
diff
changeset
|
26 ;;; Commentary: |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48256
diff
changeset
|
27 ;; |
30565 | 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. | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
53 ;; M-x highlight-phrase as can be seen RET RET |
30565 | 54 ;; |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
55 ;; Setup: |
30565 | 56 ;; |
57 ;; 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
|
58 ;; hi-lock mode and adds a "Regexp Highlighting" entry |
30565 | 59 ;; to the edit menu. |
60 ;; | |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
61 ;; (global-hi-lock-mode 1) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48256
diff
changeset
|
62 ;; |
30565 | 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) | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
69 ;; (define-key hi-lock-map "\C-zp" 'highlight-phrase) |
30565 | 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 | |
30584
b823f1c83a00
(toplevel): Require font-lock.
Eli Zaretskii <eliz@gnu.org>
parents:
30565
diff
changeset
|
84 (eval-and-compile |
30565 | 85 (require 'font-lock)) |
86 | |
66960
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
87 (defgroup hi-lock nil |
30565 | 88 "Interactively add and remove font-lock patterns for highlighting text." |
66960
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
89 :link '(custom-manual "(emacs)Highlight Interactively") |
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
90 :group 'font-lock) |
30565 | 91 |
92 (defcustom hi-lock-file-patterns-range 10000 | |
93 "Limit of search in a buffer for hi-lock patterns. | |
94 When a file is visited and hi-lock mode is on patterns starting | |
95 up to this limit are added to font-lock's patterns. See documentation | |
96 of functions `hi-lock-mode' and `hi-lock-find-patterns'." | |
97 :type 'integer | |
66960
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
98 :group 'hi-lock) |
30565 | 99 |
67765
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
100 (defcustom hi-lock-highlight-range 200000 |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
101 "Size of area highlighted by hi-lock when font-lock not active. |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
102 Font-lock is not active in buffers that do their own highlighting, |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
103 such as the buffer created by `list-colors-display'. In those buffers |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
104 hi-lock patterns will only be applied over a range of |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
105 `hi-lock-highlight-range' characters. If font-lock is active then |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
106 highlighting will be applied throughout the buffer." |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
107 :type 'integer |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
108 :group 'hi-lock) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
109 |
30565 | 110 (defcustom hi-lock-exclude-modes |
111 '(rmail-mode mime/viewer-mode gnus-article-mode) | |
112 "List of major modes in which hi-lock will not run. | |
113 For security reasons since font lock patterns can specify function | |
114 calls." | |
35215
2be11f207ca8
(hi-lock-exclude-modes): Fix :type.
Dave Love <fx@gnu.org>
parents:
33974
diff
changeset
|
115 :type '(repeat symbol) |
66960
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
116 :group 'hi-lock) |
30565 | 117 |
118 | |
119 (defgroup hi-lock-faces nil | |
120 "Faces for hi-lock." | |
66960
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
121 :group 'hi-lock |
29560f2ff8ed
(hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents:
66833
diff
changeset
|
122 :group 'faces) |
30565 | 123 |
124 (defface hi-yellow | |
61398 | 125 '((((min-colors 88) (background dark)) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
126 (:background "yellow1" :foreground "black")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
127 (((background dark)) (:background "yellow" :foreground "black")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
128 (((min-colors 88)) (:background "yellow1")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
129 (t (:background "yellow"))) |
30565 | 130 "Default face for hi-lock mode." |
131 :group 'hi-lock-faces) | |
132 | |
133 (defface hi-pink | |
33780
00803fb0f58e
(hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents:
31745
diff
changeset
|
134 '((((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
|
135 (t (:background "pink"))) |
30565 | 136 "Face for hi-lock mode." |
137 :group 'hi-lock-faces) | |
138 | |
139 (defface hi-green | |
61398 | 140 '((((min-colors 88) (background dark)) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
141 (:background "green1" :foreground "black")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
142 (((background dark)) (:background "green" :foreground "black")) |
61398 | 143 (((min-colors 88)) (:background "green1")) |
30896
ca514eff4924
(hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents:
30590
diff
changeset
|
144 (t (:background "green"))) |
30565 | 145 "Face for hi-lock mode." |
146 :group 'hi-lock-faces) | |
147 | |
148 (defface hi-blue | |
33780
00803fb0f58e
(hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents:
31745
diff
changeset
|
149 '((((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
|
150 (t (:background "light blue"))) |
30565 | 151 "Face for hi-lock mode." |
152 :group 'hi-lock-faces) | |
153 | |
154 (defface hi-black-b | |
155 '((t (:weight bold))) | |
156 "Face for hi-lock mode." | |
157 :group 'hi-lock-faces) | |
158 | |
159 (defface hi-blue-b | |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
160 '((((min-colors 88)) (:weight bold :foreground "blue1")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
161 (t (:weight bold :foreground "blue"))) |
30565 | 162 "Face for hi-lock mode." |
163 :group 'hi-lock-faces) | |
164 | |
165 (defface hi-green-b | |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
166 '((((min-colors 88)) (:weight bold :foreground "green1")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
167 (t (:weight bold :foreground "green"))) |
30565 | 168 "Face for hi-lock mode." |
169 :group 'hi-lock-faces) | |
170 | |
171 (defface hi-red-b | |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
172 '((((min-colors 88)) (:weight bold :foreground "red1")) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
60902
diff
changeset
|
173 (t (:weight bold :foreground "red"))) |
30565 | 174 "Face for hi-lock mode." |
175 :group 'hi-lock-faces) | |
176 | |
177 (defface hi-black-hb | |
31745 | 178 '((t (:weight bold :height 1.67 :inherit variable-pitch))) |
30565 | 179 "Face for hi-lock mode." |
180 :group 'hi-lock-faces) | |
181 | |
182 (defvar hi-lock-file-patterns nil | |
183 "Patterns found in file for hi-lock. Should not be changed.") | |
184 | |
185 (defvar hi-lock-interactive-patterns nil | |
186 "Patterns provided to hi-lock by user. Should not be changed.") | |
187 | |
188 (defvar hi-lock-face-history | |
189 (list "hi-yellow" "hi-pink" "hi-green" "hi-blue" "hi-black-b" | |
190 "hi-blue-b" "hi-red-b" "hi-green-b" "hi-black-hb") | |
191 "History list of faces for hi-lock interactive functions.") | |
192 | |
193 ;(dolist (f hi-lock-face-history) (unless (facep f) (error "%s not a face" f))) | |
194 | |
195 (defvar hi-lock-regexp-history nil | |
196 "History of regexps used for interactive fontification.") | |
197 | |
198 (defvar hi-lock-file-patterns-prefix "Hi-lock" | |
199 "Regexp for finding hi-lock patterns at top of file.") | |
200 | |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
201 (defvar hi-lock-archaic-interface-message-used nil |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
202 "True if user alerted that global-hi-lock-mode is now the global switch. |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
203 Earlier versions of hi-lock used hi-lock-mode as the global switch, |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
204 the message is issued if it appears that hi-lock-mode is used assuming |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
205 that older functionality. This variable avoids multiple reminders.") |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
206 |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
207 (defvar hi-lock-archaic-interface-deduce nil |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
208 "If non-nil, sometimes assume that hi-lock-mode means global-hi-lock-mode. |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
209 Assumption is made if hi-lock-mode used in the *scratch* buffer while |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
210 a library is being loaded.") |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
211 |
30565 | 212 (make-variable-buffer-local 'hi-lock-interactive-patterns) |
213 (put 'hi-lock-interactive-patterns 'permanent-local t) | |
214 (make-variable-buffer-local 'hi-lock-regexp-history) | |
215 (put 'hi-lock-regexp-history 'permanent-local t) | |
216 (make-variable-buffer-local 'hi-lock-file-patterns) | |
217 (put 'hi-lock-file-patterns 'permanent-local t) | |
218 | |
219 (defvar hi-lock-menu (make-sparse-keymap "Hi Lock") | |
220 "Menu for hi-lock mode.") | |
221 | |
222 (define-key-after hi-lock-menu [highlight-regexp] | |
223 '(menu-item "Highlight Regexp..." highlight-regexp | |
224 :help "Highlight text matching PATTERN (a regexp).")) | |
225 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
226 (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
|
227 '(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
|
228 :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
|
229 |
30565 | 230 (define-key-after hi-lock-menu [highlight-lines-matching-regexp] |
231 '(menu-item "Highlight Lines..." highlight-lines-matching-regexp | |
232 :help "Highlight lines containing match of PATTERN (a regexp)..")) | |
233 | |
234 (define-key-after hi-lock-menu [unhighlight-regexp] | |
235 '(menu-item "Remove Highlighting..." unhighlight-regexp | |
236 :help "Remove previously entered highlighting pattern." | |
237 :enable hi-lock-interactive-patterns)) | |
238 | |
239 (define-key-after hi-lock-menu [hi-lock-write-interactive-patterns] | |
240 '(menu-item "Patterns to Buffer" hi-lock-write-interactive-patterns | |
241 :help "Insert interactively added REGEXPs into buffer at point." | |
242 :enable hi-lock-interactive-patterns)) | |
243 | |
244 (define-key-after hi-lock-menu [hi-lock-find-patterns] | |
245 '(menu-item "Patterns from Buffer" hi-lock-find-patterns | |
246 :help "Use patterns (if any) near top of buffer.")) | |
247 | |
248 (defvar hi-lock-map (make-sparse-keymap "Hi Lock") | |
249 "Key map for hi-lock.") | |
250 | |
251 (define-key hi-lock-map "\C-xwi" 'hi-lock-find-patterns) | |
252 (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
|
253 (define-key hi-lock-map "\C-xwp" 'highlight-phrase) |
30565 | 254 (define-key hi-lock-map "\C-xwh" 'highlight-regexp) |
255 (define-key hi-lock-map "\C-xwr" 'unhighlight-regexp) | |
256 (define-key hi-lock-map "\C-xwb" 'hi-lock-write-interactive-patterns) | |
257 | |
258 ;; Visible Functions | |
259 | |
260 | |
261 ;;;###autoload | |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
262 (define-minor-mode hi-lock-mode |
30565 | 263 "Toggle minor mode for interactively adding font-lock highlighting patterns. |
264 | |
265 If ARG positive turn hi-lock on. Issuing a hi-lock command will also | |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
266 turn hi-lock on; to turn hi-lock on in all buffers use |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
267 global-hi-lock-mode or in your .emacs file (global-hi-lock-mode 1). |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
268 When hi-lock is turned on, a \"Regexp Highlighting\" submenu is added |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
269 to the \"Edit\" menu. The commands in the submenu, which can be |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
270 called interactively, are: |
30565 | 271 |
272 \\[highlight-regexp] REGEXP FACE | |
273 Highlight matches of pattern REGEXP in current buffer with FACE. | |
274 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
275 \\[highlight-phrase] PHRASE FACE |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
276 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
|
277 (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
|
278 to whitespace and initial lower-case letters will become case insensitive.) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48256
diff
changeset
|
279 |
30565 | 280 \\[highlight-lines-matching-regexp] REGEXP FACE |
281 Highlight lines containing matches of REGEXP in current buffer with FACE. | |
282 | |
283 \\[unhighlight-regexp] REGEXP | |
284 Remove highlighting on matches of REGEXP in current buffer. | |
285 | |
286 \\[hi-lock-write-interactive-patterns] | |
287 Write active REGEXPs into buffer as comments (if possible). They will | |
288 be read the next time file is loaded or when the \\[hi-lock-find-patterns] command | |
289 is issued. The inserted regexps are in the form of font lock keywords. | |
290 (See `font-lock-keywords') They may be edited and re-loaded with \\[hi-lock-find-patterns], | |
291 any valid `font-lock-keywords' form is acceptable. | |
292 | |
293 \\[hi-lock-find-patterns] | |
294 Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]). | |
295 | |
296 When hi-lock is started and if the mode is not excluded, the | |
297 beginning of the buffer is searched for lines of the form: | |
298 Hi-lock: FOO | |
299 where FOO is a list of patterns. These are added to the font lock keywords | |
300 already present. The patterns must start before position (number | |
301 of characters into buffer) `hi-lock-file-patterns-range'. Patterns | |
302 will be read until | |
303 Hi-lock: end | |
304 is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'." | |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
305 :group 'hi-lock |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
306 :lighter " H" |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
307 :global nil |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
308 :keymap hi-lock-map |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
309 (when (and (equal (buffer-name) "*scratch*") |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
310 load-in-progress |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
311 (not (interactive-p)) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
312 (not hi-lock-archaic-interface-message-used)) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
313 (setq hi-lock-archaic-interface-message-used t) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
314 (if hi-lock-archaic-interface-deduce |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
315 (global-hi-lock-mode hi-lock-mode) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
316 (warn |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
317 "Possible archaic use of (hi-lock-mode). |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
318 Use (global-hi-lock-mode 1) in .emacs to enable hi-lock for all buffers, |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
319 use (hi-lock-mode 1) for individual buffers. For compatibility with Emacs |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
320 versions before 22 use the following in your .emacs file: |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
321 |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
322 (if (functionp 'global-hi-lock-mode) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
323 (global-hi-lock-mode 1) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
324 (hi-lock-mode 1)) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
325 "))) |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
326 (if hi-lock-mode |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
327 ;; Turned on. |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
328 (progn |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
329 (unless font-lock-mode (font-lock-mode 1)) |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
330 (define-key-after menu-bar-edit-menu [hi-lock] |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
331 (cons "Regexp Highlighting" hi-lock-menu)) |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
332 (hi-lock-find-patterns) |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
333 (add-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook nil t)) |
30565 | 334 ;; Turned off. |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
335 (when (or hi-lock-interactive-patterns |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
336 hi-lock-file-patterns) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
337 (when hi-lock-interactive-patterns |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
338 (font-lock-remove-keywords nil hi-lock-interactive-patterns) |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
339 (setq hi-lock-interactive-patterns nil)) |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
340 (when hi-lock-file-patterns |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
341 (font-lock-remove-keywords nil hi-lock-file-patterns) |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
342 (setq hi-lock-file-patterns nil)) |
67765
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
343 (remove-overlays nil nil 'hi-lock-overlay t) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
344 (when font-lock-fontified (font-lock-fontify-buffer))) |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
345 (define-key-after menu-bar-edit-menu [hi-lock] nil) |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
346 (remove-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook t))) |
66833
efab878cd2e1
* hi-lock.el (hi-lock-mode): Set the default value of
Chong Yidong <cyd@stupidchicken.com>
parents:
65582
diff
changeset
|
347 |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
348 ;;;###autoload |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
349 (define-global-minor-mode global-hi-lock-mode |
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
350 hi-lock-mode turn-on-hi-lock-if-enabled |
67114 | 351 :group 'hi-lock) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
352 |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
353 (defun turn-on-hi-lock-if-enabled () |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
354 (setq hi-lock-archaic-interface-message-used t) |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
355 (unless (memq major-mode hi-lock-exclude-modes) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
356 (hi-lock-mode 1))) |
30565 | 357 |
358 ;;;###autoload | |
359 (defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer) | |
360 ;;;###autoload | |
361 (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
|
362 "Set face of all lines containing a match of REGEXP to FACE. |
30565 | 363 |
364 Interactively, prompt for REGEXP then FACE. Buffer-local history | |
365 list maintained for regexps, global history maintained for faces. | |
366 \\<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
|
367 \(See info node `Minibuffer History')" |
30565 | 368 (interactive |
369 (list | |
370 (hi-lock-regexp-okay | |
371 (read-from-minibuffer "Regexp to highlight line: " | |
372 (cons (or (car hi-lock-regexp-history) "") 1 ) | |
373 nil nil 'hi-lock-regexp-history)) | |
374 (hi-lock-read-face-name))) | |
67208
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
375 (or (facep face) (setq face 'hi-yellow)) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
376 (unless hi-lock-mode (hi-lock-mode 1)) |
30565 | 377 (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
|
378 ;; 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
|
379 ;; or a trailing $ in REGEXP will be interpreted correctly. |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
380 (concat "^.*\\(?:" regexp "\\).*$") face)) |
30565 | 381 |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
382 |
30565 | 383 ;;;###autoload |
384 (defalias 'highlight-regexp 'hi-lock-face-buffer) | |
385 ;;;###autoload | |
386 (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
|
387 "Set face of each match of REGEXP to FACE. |
30565 | 388 |
389 Interactively, prompt for REGEXP then FACE. Buffer-local history | |
390 list maintained for regexps, global history maintained for faces. | |
391 \\<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
|
392 \(See info node `Minibuffer History')" |
30565 | 393 (interactive |
394 (list | |
395 (hi-lock-regexp-okay | |
396 (read-from-minibuffer "Regexp to highlight: " | |
397 (cons (or (car hi-lock-regexp-history) "") 1 ) | |
398 nil nil 'hi-lock-regexp-history)) | |
399 (hi-lock-read-face-name))) | |
67208
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
400 (or (facep face) (setq face 'hi-yellow)) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
401 (unless hi-lock-mode (hi-lock-mode 1)) |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
402 (hi-lock-set-pattern regexp face)) |
30565 | 403 |
404 ;;;###autoload | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
405 (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
|
406 ;;;###autoload |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
407 (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
|
408 "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
|
409 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
410 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
|
411 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
|
412 (interactive |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
413 (list |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
414 (hi-lock-regexp-okay |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
415 (hi-lock-process-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
416 (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
|
417 (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
|
418 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
|
419 (hi-lock-read-face-name))) |
67208
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
420 (or (facep face) (setq face 'hi-yellow)) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
421 (unless hi-lock-mode (hi-lock-mode 1)) |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
422 (hi-lock-set-pattern regexp face)) |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
423 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
424 ;;;###autoload |
30565 | 425 (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) |
426 ;;;###autoload | |
427 (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
|
428 "Remove highlighting of each match to REGEXP set by hi-lock. |
30565 | 429 |
430 Interactively, prompt for REGEXP. Buffer-local history of inserted | |
431 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
|
432 interactive functions. \(See `hi-lock-interactive-patterns'.\) |
30565 | 433 \\<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
|
434 \(See info node `Minibuffer History'.\)" |
30565 | 435 (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
|
436 (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
|
437 (catch 'snafu |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
438 (or |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
439 (x-popup-menu |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
440 t |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
441 (cons |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
442 `keymap |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
443 (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
|
444 (mapcar (lambda (pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
445 (list (car pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
446 (format |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
447 "%s (%s)" (car pattern) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
448 (symbol-name |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
449 (car |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
450 (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
|
451 (cons nil nil) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
452 (car pattern))) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
453 hi-lock-interactive-patterns)))) |
63a24eff41fe
(hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents:
30584
diff
changeset
|
454 ;; 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
|
455 ;; 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
|
456 ;; 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
|
457 ;; 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
|
458 ;; 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
|
459 (throw 'snafu '("")))) |
30565 | 460 (let ((history-list (mapcar (lambda (p) (car p)) |
461 hi-lock-interactive-patterns))) | |
462 (unless hi-lock-interactive-patterns | |
463 (error "No highlighting to remove")) | |
464 (list | |
465 (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
|
466 hi-lock-interactive-patterns nil t |
30565 | 467 (car (car hi-lock-interactive-patterns)) |
468 (cons 'history-list 1)))))) | |
469 (let ((keyword (assoc regexp hi-lock-interactive-patterns))) | |
470 (when keyword | |
471 (font-lock-remove-keywords nil (list keyword)) | |
472 (setq hi-lock-interactive-patterns | |
473 (delq keyword hi-lock-interactive-patterns)) | |
67765
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
474 (remove-overlays |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
475 nil nil 'hi-lock-overlay-regexp (hi-lock-string-serialize regexp)) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
476 (when font-lock-fontified (font-lock-fontify-buffer))))) |
30565 | 477 |
478 ;;;###autoload | |
479 (defun hi-lock-write-interactive-patterns () | |
480 "Write interactively added patterns, if any, into buffer at point. | |
481 | |
482 Interactively added patterns are those normally specified using | |
483 `highlight-regexp' and `highlight-lines-matching-regexp'; they can | |
484 be found in variable `hi-lock-interactive-patterns'." | |
485 (interactive) | |
67208
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
486 (if (null hi-lock-interactive-patterns) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
487 (error "There are no interactive patterns")) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
488 (let ((beg (point))) |
30565 | 489 (mapcar |
490 (lambda (pattern) | |
67208
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
491 (insert (format "Hi-lock: (%s)\n" (prin1-to-string pattern)))) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
492 hi-lock-interactive-patterns) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
493 (comment-region beg (point))) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
494 (when (> (point) hi-lock-file-patterns-range) |
af4b92018fde
* hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents:
67115
diff
changeset
|
495 (warn "Inserted keywords not close enough to top of file"))) |
30565 | 496 |
497 ;; Implementation Functions | |
498 | |
35926
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
499 (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
|
500 "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
|
501 |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
502 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
|
503 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
|
504 (let ((mod-phrase nil)) |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
505 (setq mod-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
506 (replace-regexp-in-string |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
507 "\\<[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
|
508 (setq mod-phrase |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
509 (replace-regexp-in-string |
d2997845573f
(hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents:
35779
diff
changeset
|
510 "\\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
|
511 |
30565 | 512 (defun hi-lock-regexp-okay (regexp) |
513 "Return REGEXP if it appears suitable for a font-lock pattern. | |
514 | |
515 Otherwise signal an error. A pattern that matches the null string is | |
516 not suitable." | |
517 (if (string-match regexp "") | |
518 (error "Regexp cannot match an empty string") | |
519 regexp)) | |
520 | |
521 (defun hi-lock-read-face-name () | |
522 "Read face name from minibuffer with completion and history." | |
523 (intern (completing-read | |
524 "Highlight using face: " | |
525 obarray 'facep t | |
526 (cons (car hi-lock-face-history) | |
527 (let ((prefix | |
528 (try-completion | |
529 (substring (car hi-lock-face-history) 0 1) | |
530 (mapcar (lambda (f) (cons f f)) | |
531 hi-lock-face-history)))) | |
532 (if (and (stringp prefix) | |
533 (not (equal prefix (car hi-lock-face-history)))) | |
534 (length prefix) 0))) | |
535 '(hi-lock-face-history . 0)))) | |
536 | |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
537 (defun hi-lock-set-pattern (regexp face) |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
538 "Highlight REGEXP with face FACE." |
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
539 (let ((pattern (list regexp (list 0 (list 'quote face) t)))) |
30565 | 540 (unless (member pattern hi-lock-interactive-patterns) |
541 (font-lock-add-keywords nil (list pattern)) | |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
542 (push pattern hi-lock-interactive-patterns) |
67765
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
543 (if font-lock-fontified |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
544 (font-lock-fontify-buffer) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
545 (let* ((serial (hi-lock-string-serialize regexp)) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
546 (range-min (- (point) (/ hi-lock-highlight-range 2))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
547 (range-max (+ (point) (/ hi-lock-highlight-range 2))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
548 (search-start |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
549 (max (point-min) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
550 (- range-min (max 0 (- range-max (point-max)))))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
551 (search-end |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
552 (min (point-max) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
553 (+ range-max (max 0 (- (point-min) range-min)))))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
554 (save-excursion |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
555 (goto-char search-start) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
556 (while (re-search-forward regexp search-end t) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
557 (let ((overlay (make-overlay (match-beginning 0) (match-end 0)))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
558 (overlay-put overlay 'hi-lock-overlay t) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
559 (overlay-put overlay 'hi-lock-overlay-regexp serial) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
560 (overlay-put overlay 'face face)) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
561 (goto-char (match-end 0))))))))) |
30565 | 562 |
563 (defun hi-lock-set-file-patterns (patterns) | |
564 "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
|
565 (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
|
566 (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
|
567 (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
|
568 (font-lock-add-keywords nil hi-lock-file-patterns) |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
569 (font-lock-fontify-buffer))) |
30565 | 570 |
571 (defun hi-lock-find-patterns () | |
572 "Find patterns in current buffer for hi-lock." | |
573 (interactive) | |
574 (unless (memq major-mode hi-lock-exclude-modes) | |
575 (let ((all-patterns nil) | |
576 (target-regexp (concat "\\<" hi-lock-file-patterns-prefix ":"))) | |
577 (save-excursion | |
43052
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
578 (save-restriction |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
579 (widen) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
580 (goto-char (point-min)) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
581 (re-search-forward target-regexp |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
582 (+ (point) hi-lock-file-patterns-range) t) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
583 (beginning-of-line) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
584 (while (and (re-search-forward target-regexp (+ (point) 100) t) |
4037178317df
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39065
diff
changeset
|
585 (not (looking-at "\\s-*end"))) |
64117
8ad318b132eb
(hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
586 (condition-case nil |
8ad318b132eb
(hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
587 (setq all-patterns (append (read (current-buffer)) all-patterns)) |
8ad318b132eb
(hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
588 (error (message "Invalid pattern list expression at %d" |
67112
146389d32df6
* hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents:
66960
diff
changeset
|
589 (line-number-at-pos))))))) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
590 (when hi-lock-mode (hi-lock-set-file-patterns all-patterns)) |
30565 | 591 (if (interactive-p) |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
592 (message "Hi-lock added %d patterns." (length all-patterns)))))) |
30565 | 593 |
594 (defun hi-lock-font-lock-hook () | |
595 "Add hi lock patterns to font-lock's." | |
67115
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
596 (if font-lock-mode |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
597 (progn (font-lock-add-keywords nil hi-lock-file-patterns) |
152403ad207b
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents:
67114
diff
changeset
|
598 (font-lock-add-keywords nil hi-lock-interactive-patterns)) |
67474
a75f6e2ee182
(hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents:
67208
diff
changeset
|
599 (hi-lock-mode -1))) |
30565 | 600 |
67765
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
601 (defvar hi-lock-string-serialize-hash |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
602 (make-hash-table :test 'equal) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
603 "Hash table used to assign unique numbers to strings.") |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
604 |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
605 (defvar hi-lock-string-serialize-serial 1 |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
606 "Number assigned to last new string in call to `hi-lock-string-serialize'. |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
607 A string is considered new if it had not previously been used in a call to |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
608 `hi-lock-string-serialize'.") |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
609 |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
610 (defun hi-lock-string-serialize (string) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
611 "Return unique serial number for STRING." |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
612 (interactive) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
613 (let ((val (gethash string hi-lock-string-serialize-hash))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
614 (if val val |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
615 (puthash string |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
616 (setq hi-lock-string-serialize-serial |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
617 (1+ hi-lock-string-serialize-serial)) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
618 hi-lock-string-serialize-hash) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
619 hi-lock-string-serialize-serial))) |
fd7c898ab005
(hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents:
67474
diff
changeset
|
620 |
30565 | 621 (provide 'hi-lock) |
622 | |
60902
7160fe3a7ef1
find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59873
diff
changeset
|
623 ;; arch-tag: d2e8fd07-4cc9-4c6f-a200-1e729bc54066 |
30565 | 624 ;;; hi-lock.el ends here |