Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-372
[bpt/emacs.git] / lisp / paren.el
CommitLineData
55535639 1;;; paren.el --- highlight matching paren
b578f267 2
95ed7b42 3;; Copyright (C) 1993, 1996, 2001, 2004, 2005 Free Software Foundation, Inc.
5e28918b 4
5762abec 5;; Author: rms@gnu.org
e4c37df7
JB
6;; Maintainer: FSF
7;; Keywords: languages, faces
5e2325c9 8
5e28918b
JB
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
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
5e28918b
JB
25
26;;; Commentary:
27
ca5b46fc
EZ
28;; Put this into your ~/.emacs:
29
30;; (show-paren-mode t)
31
32;; It will display highlighting on whatever paren matches the one
33;; before or after point.
5e28918b
JB
34
35;;; Code:
36
173f2341
SM
37(defgroup paren-showing nil
38 "Showing (un)matching of parens and expressions."
39 :prefix "show-paren-"
40 :group 'paren-matching)
41
eb0d9f08 42;; This is the overlay used to highlight the matching paren.
d1475aa1 43(defvar show-paren-overlay nil)
673cc3c5 44;; This is the overlay used to highlight the closeparen right before point.
eb0d9f08
RS
45(defvar show-paren-overlay-1 nil)
46
173f2341
SM
47(defcustom show-paren-style 'parenthesis
48 "*Style used when showing a matching paren.
49Valid styles are `parenthesis' (meaning show the matching paren),
50`expression' (meaning show the entire expression enclosed by the paren) and
51`mixed' (meaning show the matching paren if it is visible, and the expression
52otherwise)."
53 :type '(choice (const parenthesis) (const expression) (const mixed))
54 :group 'paren-showing)
55
56(defcustom show-paren-delay
57 (if (featurep 'lisp-float-type) (/ (float 1) (float 8)) 1)
58 "*Time in seconds to delay before showing a matching paren."
59 :type '(number :tag "seconds")
60 :group 'paren-showing)
61
5780586e
GM
62(defcustom show-paren-priority 1000
63 "*Priority of paren highlighting overlays."
64 :type 'integer
65 :group 'paren-showing
66 :version "21.1")
f1180544 67
2fe66dda
RS
68(defcustom show-paren-ring-bell-on-mismatch nil
69 "*If non-nil, beep if mismatched paren is detected."
70 :type 'boolean
71 :group 'paren-showing
72 :version "20.3")
f1180544 73
173f2341 74(defface show-paren-match-face
05e122fe
MB
75 '((((class color) (background light))
76 :background "turquoise") ; looks OK on tty (becomes cyan)
77 (((class color) (background dark))
78 :background "steelblue3") ; looks OK on tty (becomes blue)
79 (((background dark))
80 :background "grey50")
81 (t
82 :background "gray"))
173f2341
SM
83 "Show Paren mode face used for a matching paren."
84 :group 'faces
85 :group 'paren-showing)
86
87(defface show-paren-mismatch-face
88 '((((class color)) (:foreground "white" :background "purple"))
2e8f6012 89 (t (:inverse-video t)))
173f2341
SM
90 "Show Paren mode face used for a mismatching paren."
91 :group 'faces
92 :group 'paren-showing)
30322a27 93
6afd5d68
JL
94(defvar show-paren-highlight-openparen t
95 "*Non-nil turns on openparen highlighting when matching forward.")
96
12eb8433
RS
97(defvar show-paren-idle-timer nil)
98
99;;;###autoload
2b497eda 100(define-minor-mode show-paren-mode
12eb8433
RS
101 "Toggle Show Paren mode.
102With prefix ARG, turn Show Paren mode on if and only if ARG is positive.
103Returns the new status of Show Paren mode (non-nil means on).
104
105When Show Paren mode is enabled, any matching parenthesis is highlighted
106in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time."
83bfc0d9 107 :global t :group 'paren-showing
050d5fc2
KH
108 ;; Turn off the usual paren-matching method
109 ;; when this one is turned on.
110 (if (local-variable-p 'show-paren-mode)
111 (make-local-variable 'blink-matching-paren-on-screen)
112 (kill-local-variable 'blink-matching-paren-on-screen))
2b497eda 113 (setq blink-matching-paren-on-screen (not show-paren-mode))
050d5fc2
KH
114
115 ;; Now enable or disable the mechanism.
116 ;; First get rid of the old idle timer.
117 (if show-paren-idle-timer
12eb8433 118 (cancel-timer show-paren-idle-timer))
050d5fc2
KH
119 (setq show-paren-idle-timer nil)
120 ;; If show-paren-mode is enabled in some buffer now,
121 ;; set up a new timer.
122 (when (memq t (mapcar (lambda (buffer)
123 (with-current-buffer buffer
124 show-paren-mode))
125 (buffer-list)))
126 (setq show-paren-idle-timer (run-with-idle-timer
127 show-paren-delay t
128 'show-paren-function)))
2b497eda 129 (unless show-paren-mode
050d5fc2
KH
130 (and show-paren-overlay
131 (eq (overlay-buffer show-paren-overlay) (current-buffer))
132 (delete-overlay show-paren-overlay))
133 (and show-paren-overlay-1
134 (eq (overlay-buffer show-paren-overlay-1) (current-buffer))
2b497eda 135 (delete-overlay show-paren-overlay-1))))
12eb8433 136
d1475aa1
JB
137;; Find the place to show, if there is one,
138;; and show it until input arrives.
673cc3c5 139(defun show-paren-function ()
050d5fc2 140 (if show-paren-mode
9fe9d55a 141 (let ((oldpos (point))
95ed7b42
SM
142 (dir (cond ((eq (syntax-class (syntax-after (1- (point)))) 5) -1)
143 ((eq (syntax-class (syntax-after (point))) 4) 1)))
9fe9d55a 144 pos mismatch face)
173f2341 145 ;;
050d5fc2
KH
146 ;; Find the other end of the sexp.
147 (when dir
148 (save-excursion
149 (save-restriction
150 ;; Determine the range within which to look for a match.
151 (when blink-matching-paren-distance
152 (narrow-to-region
153 (max (point-min) (- (point) blink-matching-paren-distance))
154 (min (point-max) (+ (point) blink-matching-paren-distance))))
155 ;; Scan across one sexp within that range.
156 ;; Errors or nil mean there is a mismatch.
157 (condition-case ()
158 (setq pos (scan-sexps (point) dir))
159 (error (setq pos t mismatch t)))
6be7b127
RS
160 ;; Move back the other way and verify we get back to the
161 ;; starting point. If not, these two parens don't really match.
162 ;; Maybe the one at point is escaped and doesn't really count.
163 (when (integerp pos)
164 (unless (condition-case ()
165 (eq (point) (scan-sexps pos (- dir)))
166 (error nil))
167 (setq pos nil)))
050d5fc2
KH
168 ;; If found a "matching" paren, see if it is the right
169 ;; kind of paren to match the one we started at.
170 (when (integerp pos)
171 (let ((beg (min pos oldpos)) (end (max pos oldpos)))
95ed7b42 172 (unless (eq (syntax-class (syntax-after beg)) 8)
050d5fc2 173 (setq mismatch
96bda29d
SM
174 (not (or (eq (char-before end)
175 ;; This can give nil.
176 (cdr (syntax-after beg)))
177 (eq (char-after beg)
178 ;; This can give nil.
179 (cdr (syntax-after (1- end)))))))))))))
173f2341 180 ;;
050d5fc2
KH
181 ;; Highlight the other end of the sexp, or unhighlight if none.
182 (if (not pos)
183 (progn
184 ;; If not at a paren that has a match,
185 ;; turn off any previous paren highlighting.
186 (and show-paren-overlay (overlay-buffer show-paren-overlay)
187 (delete-overlay show-paren-overlay))
188 (and show-paren-overlay-1 (overlay-buffer show-paren-overlay-1)
189 (delete-overlay show-paren-overlay-1)))
190 ;;
191 ;; Use the correct face.
192 (if mismatch
193 (progn
194 (if show-paren-ring-bell-on-mismatch
195 (beep))
196 (setq face 'show-paren-mismatch-face))
197 (setq face 'show-paren-match-face))
198 ;;
199 ;; If matching backwards, highlight the closeparen
200 ;; before point as well as its matching open.
201 ;; If matching forward, and the openparen is unbalanced,
202 ;; highlight the paren at point to indicate misbalance.
203 ;; Otherwise, turn off any such highlighting.
6afd5d68 204 (if (and (not show-paren-highlight-openparen) (= dir 1) (integerp pos))
050d5fc2
KH
205 (when (and show-paren-overlay-1
206 (overlay-buffer show-paren-overlay-1))
207 (delete-overlay show-paren-overlay-1))
208 (let ((from (if (= dir 1)
209 (point)
210 (forward-point -1)))
211 (to (if (= dir 1)
212 (forward-point 1)
213 (point))))
214 (if show-paren-overlay-1
215 (move-overlay show-paren-overlay-1 from to (current-buffer))
216 (setq show-paren-overlay-1 (make-overlay from to)))
217 ;; Always set the overlay face, since it varies.
5780586e 218 (overlay-put show-paren-overlay-1 'priority show-paren-priority)
050d5fc2
KH
219 (overlay-put show-paren-overlay-1 'face face)))
220 ;;
221 ;; Turn on highlighting for the matching paren, if found.
222 ;; If it's an unmatched paren, turn off any such highlighting.
223 (unless (integerp pos)
224 (delete-overlay show-paren-overlay))
225 (let ((to (if (or (eq show-paren-style 'expression)
173f2341
SM
226 (and (eq show-paren-style 'mixed)
227 (not (pos-visible-in-window-p pos))))
050d5fc2
KH
228 (point)
229 pos))
230 (from (if (or (eq show-paren-style 'expression)
231 (and (eq show-paren-style 'mixed)
232 (not (pos-visible-in-window-p pos))))
233 pos
234 (save-excursion
235 (goto-char pos)
236 (forward-point (- dir))))))
237 (if show-paren-overlay
238 (move-overlay show-paren-overlay from to (current-buffer))
239 (setq show-paren-overlay (make-overlay from to))))
240 ;;
241 ;; Always set the overlay face, since it varies.
5780586e 242 (overlay-put show-paren-overlay 'priority show-paren-priority)
050d5fc2
KH
243 (overlay-put show-paren-overlay 'face face)))
244 ;; show-paren-mode is nil in this buffer.
245 (and show-paren-overlay
246 (delete-overlay show-paren-overlay))
247 (and show-paren-overlay-1
248 (delete-overlay show-paren-overlay-1))))
5e28918b 249
3a3236d2
JB
250(provide 'paren)
251
d8ac3d27 252;; arch-tag: d0969b88-7ac0-4bd0-bd53-e73b892b86a9
3a3236d2 253;;; paren.el ends here