2001-07-15 16:15:35 +00:00
|
|
|
;;; paren.el --- highlight matching paren
|
1996-01-14 07:34:30 +00:00
|
|
|
|
2012-01-05 09:46:05 +00:00
|
|
|
;; Copyright (C) 1993, 1996, 2001-2012 Free Software Foundation, Inc.
|
1993-06-28 23:41:38 +00:00
|
|
|
|
1999-08-16 04:04:27 +00:00
|
|
|
;; Author: rms@gnu.org
|
1993-07-04 17:52:52 +00:00
|
|
|
;; Maintainer: FSF
|
|
|
|
;; Keywords: languages, faces
|
1993-07-04 17:41:56 +00:00
|
|
|
|
1993-06-28 23:41:38 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1993-06-28 23:41:38 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1993-06-28 23:41:38 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1993-06-28 23:41:38 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2001-10-16 19:07:50 +00:00
|
|
|
;; Put this into your ~/.emacs:
|
|
|
|
|
|
|
|
;; (show-paren-mode t)
|
|
|
|
|
|
|
|
;; It will display highlighting on whatever paren matches the one
|
|
|
|
;; before or after point.
|
1993-06-28 23:41:38 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
1997-06-19 08:37:05 +00:00
|
|
|
(defgroup paren-showing nil
|
|
|
|
"Showing (un)matching of parens and expressions."
|
|
|
|
:prefix "show-paren-"
|
|
|
|
:group 'paren-matching)
|
|
|
|
|
1993-07-18 04:47:10 +00:00
|
|
|
;; This is the overlay used to highlight the matching paren.
|
1993-06-29 18:21:12 +00:00
|
|
|
(defvar show-paren-overlay nil)
|
1996-02-28 01:28:42 +00:00
|
|
|
;; This is the overlay used to highlight the closeparen right before point.
|
1993-07-18 04:47:10 +00:00
|
|
|
(defvar show-paren-overlay-1 nil)
|
|
|
|
|
1997-06-19 08:37:05 +00:00
|
|
|
(defcustom show-paren-style 'parenthesis
|
2008-12-03 05:48:14 +00:00
|
|
|
"Style used when showing a matching paren.
|
1997-06-19 08:37:05 +00:00
|
|
|
Valid styles are `parenthesis' (meaning show the matching paren),
|
|
|
|
`expression' (meaning show the entire expression enclosed by the paren) and
|
|
|
|
`mixed' (meaning show the matching paren if it is visible, and the expression
|
|
|
|
otherwise)."
|
|
|
|
:type '(choice (const parenthesis) (const expression) (const mixed))
|
|
|
|
:group 'paren-showing)
|
|
|
|
|
2010-10-22 04:03:55 +00:00
|
|
|
(defcustom show-paren-delay 0.125
|
2008-12-03 05:48:14 +00:00
|
|
|
"Time in seconds to delay before showing a matching paren."
|
1997-06-19 08:37:05 +00:00
|
|
|
:type '(number :tag "seconds")
|
|
|
|
:group 'paren-showing)
|
|
|
|
|
2000-08-14 19:46:18 +00:00
|
|
|
(defcustom show-paren-priority 1000
|
2008-12-03 05:48:14 +00:00
|
|
|
"Priority of paren highlighting overlays."
|
2000-08-14 19:46:18 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'paren-showing
|
|
|
|
:version "21.1")
|
2003-02-04 12:29:42 +00:00
|
|
|
|
1998-05-01 05:33:39 +00:00
|
|
|
(defcustom show-paren-ring-bell-on-mismatch nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"If non-nil, beep if mismatched paren is detected."
|
1998-05-01 05:33:39 +00:00
|
|
|
:type 'boolean
|
|
|
|
:group 'paren-showing
|
|
|
|
:version "20.3")
|
2003-02-04 12:29:42 +00:00
|
|
|
|
2005-12-30 05:57:19 +00:00
|
|
|
(defgroup paren-showing-faces nil
|
|
|
|
"Group for faces of Show Paren mode."
|
2005-12-27 01:11:01 +00:00
|
|
|
:group 'paren-showing
|
|
|
|
:group 'faces
|
|
|
|
:version "22.1")
|
|
|
|
|
2005-06-10 08:25:35 +00:00
|
|
|
(defface show-paren-match
|
2001-11-07 05:13:45 +00:00
|
|
|
'((((class color) (background light))
|
|
|
|
:background "turquoise") ; looks OK on tty (becomes cyan)
|
|
|
|
(((class color) (background dark))
|
|
|
|
:background "steelblue3") ; looks OK on tty (becomes blue)
|
|
|
|
(((background dark))
|
|
|
|
:background "grey50")
|
|
|
|
(t
|
|
|
|
:background "gray"))
|
1997-06-19 08:37:05 +00:00
|
|
|
"Show Paren mode face used for a matching paren."
|
2005-12-30 05:57:19 +00:00
|
|
|
:group 'paren-showing-faces)
|
2009-09-01 07:24:13 +00:00
|
|
|
(define-obsolete-face-alias 'show-paren-match-face 'show-paren-match "22.1")
|
1997-06-19 08:37:05 +00:00
|
|
|
|
2005-06-10 08:25:35 +00:00
|
|
|
(defface show-paren-mismatch
|
1997-06-19 08:37:05 +00:00
|
|
|
'((((class color)) (:foreground "white" :background "purple"))
|
2002-12-01 23:15:37 +00:00
|
|
|
(t (:inverse-video t)))
|
1997-06-19 08:37:05 +00:00
|
|
|
"Show Paren mode face used for a mismatching paren."
|
2005-12-30 05:57:19 +00:00
|
|
|
:group 'paren-showing-faces)
|
2009-09-01 07:24:13 +00:00
|
|
|
(define-obsolete-face-alias 'show-paren-mismatch-face
|
|
|
|
'show-paren-mismatch "22.1")
|
1993-07-20 05:59:51 +00:00
|
|
|
|
2004-04-27 06:43:42 +00:00
|
|
|
(defvar show-paren-highlight-openparen t
|
|
|
|
"*Non-nil turns on openparen highlighting when matching forward.")
|
|
|
|
|
1997-07-04 00:16:50 +00:00
|
|
|
(defvar show-paren-idle-timer nil)
|
|
|
|
|
|
|
|
;;;###autoload
|
2000-09-29 03:11:01 +00:00
|
|
|
(define-minor-mode show-paren-mode
|
Fix minor mode docstrings for the new meaning of a nil ARG.
* abbrev.el (abbrev-mode):
* allout.el (allout-mode):
* autoinsert.el (auto-insert-mode):
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
(global-auto-revert-mode):
* battery.el (display-battery-mode):
* composite.el (global-auto-composition-mode)
(auto-composition-mode):
* delsel.el (delete-selection-mode):
* desktop.el (desktop-save-mode):
* dired-x.el (dired-omit-mode):
* dirtrack.el (dirtrack-mode):
* doc-view.el (doc-view-minor-mode):
* double.el (double-mode):
* electric.el (electric-indent-mode, electric-pair-mode):
* emacs-lock.el (emacs-lock-mode):
* epa-hook.el (auto-encryption-mode):
* follow.el (follow-mode):
* font-core.el (font-lock-mode):
* frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
* help.el (temp-buffer-resize-mode):
* hilit-chg.el (highlight-changes-mode)
(highlight-changes-visible-mode):
* hi-lock.el (hi-lock-mode):
* hl-line.el (hl-line-mode, global-hl-line-mode):
* icomplete.el (icomplete-mode):
* ido.el (ido-everywhere):
* image-file.el (auto-image-file-mode):
* image-mode.el (image-minor-mode):
* iswitchb.el (iswitchb-mode):
* jka-cmpr-hook.el (auto-compression-mode):
* linum.el (linum-mode):
* longlines.el (longlines-mode):
* master.el (master-mode):
* mb-depth.el (minibuffer-depth-indicate-mode):
* menu-bar.el (menu-bar-mode):
* minibuf-eldef.el (minibuffer-electric-default-mode):
* mouse-sel.el (mouse-sel-mode):
* msb.el (msb-mode):
* mwheel.el (mouse-wheel-mode):
* outline.el (outline-minor-mode):
* paren.el (show-paren-mode):
* recentf.el (recentf-mode):
* reveal.el (reveal-mode, global-reveal-mode):
* rfn-eshadow.el (file-name-shadow-mode):
* ruler-mode.el (ruler-mode):
* savehist.el (savehist-mode):
* scroll-all.el (scroll-all-mode):
* scroll-bar.el (scroll-bar-mode):
* server.el (server-mode):
* shell.el (shell-dirtrack-mode):
* simple.el (auto-fill-mode, transient-mark-mode)
(visual-line-mode, overwrite-mode, binary-overwrite-mode)
(line-number-mode, column-number-mode, size-indication-mode)
(auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
* strokes.el (strokes-mode):
* time.el (display-time-mode):
* t-mouse.el (gpm-mouse-mode):
* tool-bar.el (tool-bar-mode):
* tooltip.el (tooltip-mode):
* type-break.el (type-break-mode-line-message-mode)
(type-break-query-mode):
* view.el (view-mode):
* whitespace.el (whitespace-mode, whitespace-newline-mode)
(global-whitespace-mode, global-whitespace-newline-mode):
* xt-mouse.el (xterm-mouse-mode): Doc fix.
* emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Fix
autogenerated docstring.
2011-10-19 12:54:24 +00:00
|
|
|
"Toggle visualization of matching parens (Show Paren mode).
|
|
|
|
With a prefix argument ARG, enable Show Paren mode if ARG is
|
|
|
|
positive, and disable it otherwise. If called from Lisp, enable
|
|
|
|
the mode if ARG is omitted or nil.
|
|
|
|
|
|
|
|
Show Paren mode is a global minor mode. When enabled, any
|
|
|
|
matching parenthesis is highlighted in `show-paren-style' after
|
|
|
|
`show-paren-delay' seconds of Emacs idle time."
|
2000-11-03 22:30:37 +00:00
|
|
|
:global t :group 'paren-showing
|
2005-11-27 15:54:28 +00:00
|
|
|
;; Enable or disable the mechanism.
|
1999-08-16 03:18:40 +00:00
|
|
|
;; First get rid of the old idle timer.
|
|
|
|
(if show-paren-idle-timer
|
1997-07-04 00:16:50 +00:00
|
|
|
(cancel-timer show-paren-idle-timer))
|
1999-08-16 03:18:40 +00:00
|
|
|
(setq show-paren-idle-timer nil)
|
|
|
|
;; If show-paren-mode is enabled in some buffer now,
|
|
|
|
;; set up a new timer.
|
|
|
|
(when (memq t (mapcar (lambda (buffer)
|
|
|
|
(with-current-buffer buffer
|
|
|
|
show-paren-mode))
|
|
|
|
(buffer-list)))
|
|
|
|
(setq show-paren-idle-timer (run-with-idle-timer
|
|
|
|
show-paren-delay t
|
|
|
|
'show-paren-function)))
|
2000-09-29 03:11:01 +00:00
|
|
|
(unless show-paren-mode
|
1999-08-16 03:18:40 +00:00
|
|
|
(and show-paren-overlay
|
|
|
|
(eq (overlay-buffer show-paren-overlay) (current-buffer))
|
|
|
|
(delete-overlay show-paren-overlay))
|
|
|
|
(and show-paren-overlay-1
|
|
|
|
(eq (overlay-buffer show-paren-overlay-1) (current-buffer))
|
2000-09-29 03:11:01 +00:00
|
|
|
(delete-overlay show-paren-overlay-1))))
|
1997-07-04 00:16:50 +00:00
|
|
|
|
1993-06-29 18:21:12 +00:00
|
|
|
;; Find the place to show, if there is one,
|
|
|
|
;; and show it until input arrives.
|
1996-02-28 01:28:42 +00:00
|
|
|
(defun show-paren-function ()
|
1999-08-16 03:18:40 +00:00
|
|
|
(if show-paren-mode
|
2011-09-10 11:28:19 +00:00
|
|
|
(let* ((oldpos (point))
|
|
|
|
(dir (cond ((eq (syntax-class (syntax-after (1- (point)))) 5) -1)
|
|
|
|
((eq (syntax-class (syntax-after (point))) 4) 1)))
|
|
|
|
(unescaped
|
|
|
|
(when dir
|
|
|
|
;; Verify an even number of quoting characters precede the paren.
|
|
|
|
;; Follow the same logic as in `blink-matching-open'.
|
|
|
|
(= (if (= dir -1) 1 0)
|
|
|
|
(logand 1 (- (point)
|
|
|
|
(save-excursion
|
|
|
|
(if (= dir -1) (forward-char -1))
|
|
|
|
(skip-syntax-backward "/\\")
|
|
|
|
(point)))))))
|
|
|
|
pos mismatch face)
|
1997-06-19 08:37:05 +00:00
|
|
|
;;
|
1999-08-16 03:18:40 +00:00
|
|
|
;; Find the other end of the sexp.
|
2011-09-10 11:28:19 +00:00
|
|
|
(when unescaped
|
1999-08-16 03:18:40 +00:00
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
;; Determine the range within which to look for a match.
|
|
|
|
(when blink-matching-paren-distance
|
|
|
|
(narrow-to-region
|
|
|
|
(max (point-min) (- (point) blink-matching-paren-distance))
|
|
|
|
(min (point-max) (+ (point) blink-matching-paren-distance))))
|
|
|
|
;; Scan across one sexp within that range.
|
|
|
|
;; Errors or nil mean there is a mismatch.
|
|
|
|
(condition-case ()
|
|
|
|
(setq pos (scan-sexps (point) dir))
|
|
|
|
(error (setq pos t mismatch t)))
|
2002-03-11 09:14:28 +00:00
|
|
|
;; Move back the other way and verify we get back to the
|
|
|
|
;; starting point. If not, these two parens don't really match.
|
|
|
|
;; Maybe the one at point is escaped and doesn't really count.
|
|
|
|
(when (integerp pos)
|
|
|
|
(unless (condition-case ()
|
|
|
|
(eq (point) (scan-sexps pos (- dir)))
|
|
|
|
(error nil))
|
|
|
|
(setq pos nil)))
|
1999-08-16 03:18:40 +00:00
|
|
|
;; If found a "matching" paren, see if it is the right
|
|
|
|
;; kind of paren to match the one we started at.
|
|
|
|
(when (integerp pos)
|
|
|
|
(let ((beg (min pos oldpos)) (end (max pos oldpos)))
|
2005-04-19 18:16:15 +00:00
|
|
|
(unless (eq (syntax-class (syntax-after beg)) 8)
|
1999-08-16 03:18:40 +00:00
|
|
|
(setq mismatch
|
2004-12-06 19:06:12 +00:00
|
|
|
(not (or (eq (char-before end)
|
|
|
|
;; This can give nil.
|
|
|
|
(cdr (syntax-after beg)))
|
|
|
|
(eq (char-after beg)
|
|
|
|
;; This can give nil.
|
2005-11-20 18:07:19 +00:00
|
|
|
(cdr (syntax-after (1- end))))
|
|
|
|
;; The cdr might hold a new paren-class
|
|
|
|
;; info rather than a matching-char info,
|
|
|
|
;; in which case the two CDRs should match.
|
|
|
|
(eq (cdr (syntax-after (1- end)))
|
|
|
|
(cdr (syntax-after beg))))))))))))
|
1997-06-19 08:37:05 +00:00
|
|
|
;;
|
1999-08-16 03:18:40 +00:00
|
|
|
;; Highlight the other end of the sexp, or unhighlight if none.
|
|
|
|
(if (not pos)
|
|
|
|
(progn
|
|
|
|
;; If not at a paren that has a match,
|
|
|
|
;; turn off any previous paren highlighting.
|
|
|
|
(and show-paren-overlay (overlay-buffer show-paren-overlay)
|
|
|
|
(delete-overlay show-paren-overlay))
|
|
|
|
(and show-paren-overlay-1 (overlay-buffer show-paren-overlay-1)
|
|
|
|
(delete-overlay show-paren-overlay-1)))
|
|
|
|
;;
|
|
|
|
;; Use the correct face.
|
|
|
|
(if mismatch
|
|
|
|
(progn
|
|
|
|
(if show-paren-ring-bell-on-mismatch
|
|
|
|
(beep))
|
2005-06-10 08:25:35 +00:00
|
|
|
(setq face 'show-paren-mismatch))
|
|
|
|
(setq face 'show-paren-match))
|
1999-08-16 03:18:40 +00:00
|
|
|
;;
|
|
|
|
;; If matching backwards, highlight the closeparen
|
|
|
|
;; before point as well as its matching open.
|
|
|
|
;; If matching forward, and the openparen is unbalanced,
|
|
|
|
;; highlight the paren at point to indicate misbalance.
|
|
|
|
;; Otherwise, turn off any such highlighting.
|
2004-04-27 06:43:42 +00:00
|
|
|
(if (and (not show-paren-highlight-openparen) (= dir 1) (integerp pos))
|
1999-08-16 03:18:40 +00:00
|
|
|
(when (and show-paren-overlay-1
|
|
|
|
(overlay-buffer show-paren-overlay-1))
|
|
|
|
(delete-overlay show-paren-overlay-1))
|
|
|
|
(let ((from (if (= dir 1)
|
|
|
|
(point)
|
2009-03-19 14:45:02 +00:00
|
|
|
(- (point) 1)))
|
1999-08-16 03:18:40 +00:00
|
|
|
(to (if (= dir 1)
|
2009-03-19 14:45:02 +00:00
|
|
|
(+ (point) 1)
|
1999-08-16 03:18:40 +00:00
|
|
|
(point))))
|
|
|
|
(if show-paren-overlay-1
|
|
|
|
(move-overlay show-paren-overlay-1 from to (current-buffer))
|
2006-12-01 21:03:19 +00:00
|
|
|
(setq show-paren-overlay-1 (make-overlay from to nil t)))
|
1999-08-16 03:18:40 +00:00
|
|
|
;; Always set the overlay face, since it varies.
|
2000-08-14 19:46:18 +00:00
|
|
|
(overlay-put show-paren-overlay-1 'priority show-paren-priority)
|
1999-08-16 03:18:40 +00:00
|
|
|
(overlay-put show-paren-overlay-1 'face face)))
|
|
|
|
;;
|
|
|
|
;; Turn on highlighting for the matching paren, if found.
|
|
|
|
;; If it's an unmatched paren, turn off any such highlighting.
|
|
|
|
(unless (integerp pos)
|
|
|
|
(delete-overlay show-paren-overlay))
|
|
|
|
(let ((to (if (or (eq show-paren-style 'expression)
|
1997-06-19 08:37:05 +00:00
|
|
|
(and (eq show-paren-style 'mixed)
|
|
|
|
(not (pos-visible-in-window-p pos))))
|
1999-08-16 03:18:40 +00:00
|
|
|
(point)
|
|
|
|
pos))
|
|
|
|
(from (if (or (eq show-paren-style 'expression)
|
|
|
|
(and (eq show-paren-style 'mixed)
|
|
|
|
(not (pos-visible-in-window-p pos))))
|
|
|
|
pos
|
|
|
|
(save-excursion
|
|
|
|
(goto-char pos)
|
2009-03-19 14:45:02 +00:00
|
|
|
(- (point) dir)))))
|
1999-08-16 03:18:40 +00:00
|
|
|
(if show-paren-overlay
|
|
|
|
(move-overlay show-paren-overlay from to (current-buffer))
|
2006-12-01 21:03:19 +00:00
|
|
|
(setq show-paren-overlay (make-overlay from to nil t))))
|
1999-08-16 03:18:40 +00:00
|
|
|
;;
|
|
|
|
;; Always set the overlay face, since it varies.
|
2000-08-14 19:46:18 +00:00
|
|
|
(overlay-put show-paren-overlay 'priority show-paren-priority)
|
2007-06-01 13:47:44 +00:00
|
|
|
(overlay-put show-paren-overlay 'face face)))
|
1999-08-16 03:18:40 +00:00
|
|
|
;; show-paren-mode is nil in this buffer.
|
|
|
|
(and show-paren-overlay
|
|
|
|
(delete-overlay show-paren-overlay))
|
|
|
|
(and show-paren-overlay-1
|
|
|
|
(delete-overlay show-paren-overlay-1))))
|
1993-06-28 23:41:38 +00:00
|
|
|
|
1993-06-29 21:27:42 +00:00
|
|
|
(provide 'paren)
|
|
|
|
|
|
|
|
;;; paren.el ends here
|