1993-06-28 23:41:38 +00:00
|
|
|
;;; paren.el --- highlight matching paren.
|
1993-06-29 04:03:22 +00:00
|
|
|
;; Copyright (C) 1993 Free Software Foundation, Inc.
|
1993-06-28 23:41:38 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; 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
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Load this and it will display highlighting on whatever
|
|
|
|
;; paren matches the one before or after point.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
1993-06-29 18:21:12 +00:00
|
|
|
(defvar show-paren-overlay nil)
|
1993-06-28 23:41:38 +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.
|
|
|
|
(defun show-paren-command-hook ()
|
1993-06-28 23:41:38 +00:00
|
|
|
(let (pos dir mismatch (oldpos (point))
|
|
|
|
(face (if (face-equal 'highlight 'region)
|
|
|
|
'underline 'highlight)))
|
|
|
|
(cond ((eq (char-syntax (following-char)) ?\()
|
|
|
|
(setq dir 1))
|
|
|
|
((eq (char-syntax (preceding-char)) ?\))
|
|
|
|
(setq dir -1)))
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
;; Determine the range within which to look for a match.
|
|
|
|
(if 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.
|
|
|
|
(condition-case ()
|
|
|
|
(setq pos (scan-sexps (point) dir))
|
|
|
|
(error nil))
|
|
|
|
;; See if the "matching" paren is the right kind of paren
|
|
|
|
;; to match the one we started at.
|
|
|
|
(if pos
|
|
|
|
(let ((beg (min pos oldpos)) (end (max pos oldpos)))
|
|
|
|
(and (/= (char-syntax (char-after beg)) ?\$)
|
|
|
|
(setq mismatch
|
|
|
|
(/= (char-after (1- end))
|
|
|
|
(logand (lsh (aref (syntax-table)
|
|
|
|
(char-after beg))
|
|
|
|
-8)
|
|
|
|
255))))))
|
1993-06-29 18:21:12 +00:00
|
|
|
;; If they don't properly match, don't show.
|
1993-06-28 23:41:38 +00:00
|
|
|
(if mismatch
|
|
|
|
(setq pos nil))))
|
|
|
|
(cond (pos
|
1993-06-29 18:21:12 +00:00
|
|
|
(if show-paren-overlay
|
|
|
|
(move-overlay show-paren-overlay (- pos dir) pos)
|
|
|
|
(setq show-paren-overlay
|
1993-06-28 23:41:38 +00:00
|
|
|
(make-overlay (- pos dir) pos)))
|
1993-06-29 18:21:12 +00:00
|
|
|
(overlay-put show-paren-overlay 'face face)
|
1993-06-28 23:41:38 +00:00
|
|
|
;;; This is code to blink the highlighting.
|
|
|
|
;;; It is desirable to avoid this because
|
|
|
|
;;; it would interfere with auto-save and gc when idle.
|
|
|
|
;;; (while (sit-for 1)
|
1993-06-29 18:21:12 +00:00
|
|
|
;;; (overlay-put show-paren-overlay
|
1993-06-28 23:41:38 +00:00
|
|
|
;;; 'face
|
1993-06-29 18:21:12 +00:00
|
|
|
;;; (if (overlay-get show-paren-overlay
|
1993-06-28 23:41:38 +00:00
|
|
|
;;; 'face)
|
|
|
|
;;; nil face)))
|
|
|
|
)
|
|
|
|
(t
|
1993-06-29 18:21:12 +00:00
|
|
|
(and show-paren-overlay (overlay-buffer show-paren-overlay)
|
|
|
|
(delete-overlay show-paren-overlay))))))
|
1993-06-28 23:41:38 +00:00
|
|
|
|
1993-06-29 18:21:12 +00:00
|
|
|
(add-hook 'post-command-hook 'show-paren-command-hook)
|
1993-06-28 23:41:38 +00:00
|
|
|
|