2013-04-23 12:29:14 +00:00
|
|
|
|
;;; jit-lock.el --- just-in-time fontification -*- lexical-binding: t -*-
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2022-01-01 07:45:51 +00:00
|
|
|
|
;; Copyright (C) 1998, 2000-2022 Free Software Foundation, Inc.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Gerd Moellmann <gerd@gnu.org>
|
|
|
|
|
;; Keywords: faces files
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
1999-07-21 21:43:52 +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
|
1999-07-21 21:43:52 +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.
|
1999-07-21 21:43:52 +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
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Just-in-time fontification, triggered by C redisplay code.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(eval-when-compile
|
2000-06-20 16:24:04 +00:00
|
|
|
|
(defmacro with-buffer-prepared-for-jit-lock (&rest body)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Execute BODY in current buffer, overriding several variables.
|
|
|
|
|
Preserves the `buffer-modified-p' state of the current buffer."
|
2004-01-30 00:20:46 +00:00
|
|
|
|
(declare (debug t))
|
2010-08-30 13:57:42 +00:00
|
|
|
|
`(let ((inhibit-point-motion-hooks t))
|
|
|
|
|
(with-silent-modifications
|
|
|
|
|
,@body))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Customization.
|
|
|
|
|
|
2004-01-26 22:56:09 +00:00
|
|
|
|
(defgroup jit-lock nil
|
|
|
|
|
"Font Lock support mode to fontify just-in-time."
|
|
|
|
|
:version "21.1"
|
|
|
|
|
:group 'font-lock)
|
|
|
|
|
|
2021-09-07 16:31:16 +00:00
|
|
|
|
(defcustom jit-lock-chunk-size 1500
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Jit-lock fontifies chunks of at most this many characters at a time.
|
2005-12-30 13:20:23 +00:00
|
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
|
This variable controls both `display-time' and stealth fontification.
|
2021-09-07 16:31:16 +00:00
|
|
|
|
|
|
|
|
|
The optimum value is a little over the typical number of buffer
|
|
|
|
|
characters which fit in a typical window."
|
2020-03-28 14:16:58 +00:00
|
|
|
|
:type 'integer)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
2007-03-04 08:41:08 +00:00
|
|
|
|
(defcustom jit-lock-stealth-time nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Time in seconds to wait before beginning stealth fontification.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Stealth fontification occurs if there is no input within this time.
|
2000-10-17 12:47:29 +00:00
|
|
|
|
If nil, stealth fontification is never performed.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
The value of this variable is used when JIT Lock mode is turned on."
|
|
|
|
|
:type '(choice (const :tag "never" nil)
|
2020-03-28 14:16:58 +00:00
|
|
|
|
(number :tag "seconds" :value 16)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
2005-04-23 12:41:24 +00:00
|
|
|
|
(defcustom jit-lock-stealth-nice 0.5
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Time in seconds to pause between chunks of stealth fontification.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Each iteration of stealth fontification is separated by this amount of time,
|
|
|
|
|
thus reducing the demand that stealth fontification makes on the system.
|
|
|
|
|
If nil, means stealth fontification is never paused.
|
|
|
|
|
To reduce machine load during stealth fontification, at the cost of stealth
|
|
|
|
|
taking longer to fontify, you could increase the value of this variable.
|
|
|
|
|
See also `jit-lock-stealth-load'."
|
|
|
|
|
:type '(choice (const :tag "never" nil)
|
2020-03-28 14:16:58 +00:00
|
|
|
|
(number :tag "seconds")))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
(defcustom jit-lock-stealth-load
|
|
|
|
|
(if (condition-case nil (load-average) (error)) 200)
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Load in percentage above which stealth fontification is suspended.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Stealth fontification pauses when the system short-term load average (as
|
|
|
|
|
returned by the function `load-average' if supported) goes above this level,
|
|
|
|
|
thus reducing the demand that stealth fontification makes on the system.
|
|
|
|
|
If nil, means stealth fontification is never suspended.
|
|
|
|
|
To reduce machine load during stealth fontification, at the cost of stealth
|
|
|
|
|
taking longer to fontify, you could reduce the value of this variable.
|
|
|
|
|
See also `jit-lock-stealth-nice'."
|
|
|
|
|
:type (if (condition-case nil (load-average) (error))
|
|
|
|
|
'(choice (const :tag "never" nil)
|
|
|
|
|
(integer :tag "load"))
|
2020-03-28 14:16:58 +00:00
|
|
|
|
'(const :format "%t: unsupported\n" nil)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defcustom jit-lock-stealth-verbose nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, means stealth fontification should show status messages."
|
2020-03-28 14:16:58 +00:00
|
|
|
|
:type 'boolean)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
2004-01-30 00:08:38 +00:00
|
|
|
|
(defvaralias 'jit-lock-defer-contextually 'jit-lock-contextually)
|
|
|
|
|
(defcustom jit-lock-contextually 'syntax-driven
|
2020-04-08 15:33:52 +00:00
|
|
|
|
"If non-nil, fontification should be syntactically true.
|
|
|
|
|
If nil, refontification occurs only on lines that were modified. This
|
1999-07-21 21:43:52 +00:00
|
|
|
|
means where modification on a line causes syntactic change on subsequent lines,
|
|
|
|
|
those subsequent lines are not refontified to reflect their new context.
|
2020-04-08 15:33:52 +00:00
|
|
|
|
If t, fontification occurs on those lines modified and all subsequent lines.
|
|
|
|
|
This means those subsequent lines are refontified to reflect their new
|
|
|
|
|
syntactic context, after `jit-lock-context-time' seconds.
|
|
|
|
|
If any other value, e.g., `syntax-driven', it means refontification of
|
|
|
|
|
subsequent lines to reflect their new syntactic context may or may not
|
2021-03-12 11:11:17 +00:00
|
|
|
|
occur after `jit-lock-context-time', depending on the font-lock
|
2020-04-08 15:33:52 +00:00
|
|
|
|
definitions of the buffer. Specifically, if `font-lock-keywords-only'
|
|
|
|
|
is nil in a buffer, which generally means the syntactic fontification
|
|
|
|
|
is done using the buffer mode's syntax table, the syntactic
|
|
|
|
|
refontification will be triggered (because in that case font-lock
|
|
|
|
|
calls `jit-lock-register' to set up for syntactic refontification,
|
|
|
|
|
and sets the buffer-local value of `jit-lock-contextually' to t).
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
The value of this variable is used when JIT Lock mode is turned on."
|
|
|
|
|
:type '(choice (const :tag "never" nil)
|
|
|
|
|
(const :tag "always" t)
|
2020-03-28 14:16:58 +00:00
|
|
|
|
(other :tag "syntax-driven" syntax-driven)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2004-01-30 00:20:46 +00:00
|
|
|
|
(defcustom jit-lock-context-time 0.5
|
|
|
|
|
"Idle time after which text is contextually refontified, if applicable."
|
2020-03-28 14:16:58 +00:00
|
|
|
|
:type '(number :tag "seconds"))
|
2005-05-19 19:06:19 +00:00
|
|
|
|
|
2019-07-12 18:27:53 +00:00
|
|
|
|
(defcustom jit-lock-antiblink-grace 2
|
2019-12-05 15:43:06 +00:00
|
|
|
|
"Delay after which to refontify unterminated strings and comments.
|
|
|
|
|
If nil, no grace period is given; unterminated strings and comments
|
|
|
|
|
are refontified immediately. If a number, a newly created
|
|
|
|
|
unterminated string or comment is fontified only to the end of the
|
|
|
|
|
current line, after which fontification waits that many seconds of idle
|
|
|
|
|
time before refontifying the remaining lines. When typing strings
|
|
|
|
|
and comments, the delay helps avoid unpleasant \"blinking\", between
|
|
|
|
|
string/comment and non-string/non-comment fontification."
|
2019-07-12 18:27:53 +00:00
|
|
|
|
:type '(choice (const :tag "never" nil)
|
|
|
|
|
(number :tag "seconds"))
|
|
|
|
|
:version "27.1")
|
|
|
|
|
|
2001-11-25 18:02:45 +00:00
|
|
|
|
(defcustom jit-lock-defer-time nil ;; 0.25
|
2001-11-21 01:30:35 +00:00
|
|
|
|
"Idle time after which deferred fontification should take place.
|
2014-12-16 14:25:57 +00:00
|
|
|
|
If nil, fontification is not deferred.
|
|
|
|
|
If 0, then fontification is only deferred while there is input pending."
|
2001-11-21 01:30:35 +00:00
|
|
|
|
:type '(choice (const :tag "never" nil)
|
|
|
|
|
(number :tag "seconds")))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Variables that are not customizable.
|
|
|
|
|
|
2013-01-30 17:03:44 +00:00
|
|
|
|
(defvar-local jit-lock-mode nil
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Non-nil means Just-in-time Lock mode is active.")
|
|
|
|
|
|
2020-04-27 22:36:28 +00:00
|
|
|
|
(defvar jit-lock-functions nil
|
|
|
|
|
"Special hook run to do the actual fontification.
|
|
|
|
|
The functions are called with two arguments:
|
2021-08-23 20:14:00 +00:00
|
|
|
|
the START and END of the region to fontify.
|
|
|
|
|
Each function can return a list of the form (jit-lock-bounds BEG . END),
|
|
|
|
|
to indicate the bounds of the region it actually fontified;
|
|
|
|
|
JIT font-lock will use this information to optimize redisplay cycles.")
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2013-01-30 17:03:44 +00:00
|
|
|
|
(defvar-local jit-lock-context-unfontify-pos nil
|
2000-10-08 19:01:17 +00:00
|
|
|
|
"Consider text after this position as contextually unfontified.
|
2000-06-20 16:24:04 +00:00
|
|
|
|
If nil, contextual fontification is disabled.")
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
(defvar jit-lock-stealth-timer nil
|
|
|
|
|
"Timer for stealth fontification in Just-in-time Lock mode.")
|
2006-08-24 23:40:00 +00:00
|
|
|
|
(defvar jit-lock-stealth-repeat-timer nil
|
|
|
|
|
"Timer for repeated stealth fontification in Just-in-time Lock mode.")
|
2004-01-30 00:20:46 +00:00
|
|
|
|
(defvar jit-lock-context-timer nil
|
|
|
|
|
"Timer for context fontification in Just-in-time Lock mode.")
|
2001-11-21 01:30:35 +00:00
|
|
|
|
(defvar jit-lock-defer-timer nil
|
|
|
|
|
"Timer for deferred fontification in Just-in-time Lock mode.")
|
|
|
|
|
|
2004-01-26 22:56:09 +00:00
|
|
|
|
(defvar jit-lock-defer-buffers nil
|
2001-11-21 01:30:35 +00:00
|
|
|
|
"List of buffers with pending deferred fontification.")
|
2006-08-24 23:40:00 +00:00
|
|
|
|
(defvar jit-lock-stealth-buffers nil
|
|
|
|
|
"List of buffers that are being fontified stealthily.")
|
2019-07-12 18:27:53 +00:00
|
|
|
|
|
|
|
|
|
(defvar jit-lock--antiblink-grace-timer nil
|
|
|
|
|
"Idle timer for fontifying unterminated string or comment, or nil.")
|
|
|
|
|
(defvar jit-lock--antiblink-line-beginning-position (make-marker)
|
|
|
|
|
"Last line beginning position after last command (a marker).")
|
|
|
|
|
(defvar jit-lock--antiblink-string-or-comment nil
|
|
|
|
|
"Non-nil if in string or comment after last command (a boolean).")
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; JIT lock mode
|
|
|
|
|
|
|
|
|
|
(defun jit-lock-mode (arg)
|
|
|
|
|
"Toggle Just-in-time Lock mode.
|
2000-06-20 16:24:04 +00:00
|
|
|
|
Turn Just-in-time Lock mode on if and only if ARG is non-nil.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Enable it automatically by customizing group `font-lock'.
|
|
|
|
|
|
|
|
|
|
When Just-in-time Lock mode is enabled, fontification is different in the
|
|
|
|
|
following ways:
|
|
|
|
|
|
|
|
|
|
- Demand-driven buffer fontification triggered by Emacs C code.
|
|
|
|
|
This means initial fontification of the whole buffer does not occur.
|
|
|
|
|
Instead, fontification occurs when necessary, such as when scrolling
|
|
|
|
|
through the buffer would otherwise reveal unfontified areas. This is
|
|
|
|
|
useful if buffer fontification is too slow for large buffers.
|
|
|
|
|
|
|
|
|
|
- Stealthy buffer fontification if `jit-lock-stealth-time' is non-nil.
|
|
|
|
|
This means remaining unfontified areas of buffers are fontified if Emacs has
|
|
|
|
|
been idle for `jit-lock-stealth-time' seconds, while Emacs remains idle.
|
|
|
|
|
This is useful if any buffer has any deferred fontification.
|
|
|
|
|
|
2004-01-30 00:08:38 +00:00
|
|
|
|
- Deferred context fontification if `jit-lock-contextually' is
|
1999-07-21 21:43:52 +00:00
|
|
|
|
non-nil. This means fontification updates the buffer corresponding to
|
2004-01-30 00:20:46 +00:00
|
|
|
|
true syntactic context, after `jit-lock-context-time' seconds of Emacs
|
1999-07-21 21:43:52 +00:00
|
|
|
|
idle time, while Emacs remains idle. Otherwise, fontification occurs
|
|
|
|
|
on modified lines only, and subsequent lines can remain fontified
|
|
|
|
|
corresponding to previous syntactic contexts. This is useful where
|
|
|
|
|
strings or comments span lines.
|
|
|
|
|
|
|
|
|
|
Stealth fontification only occurs while the system remains unloaded.
|
|
|
|
|
If the system load rises above `jit-lock-stealth-load' percent, stealth
|
|
|
|
|
fontification is suspended. Stealth fontification intensity is controlled via
|
2014-02-13 08:26:01 +00:00
|
|
|
|
the variable `jit-lock-stealth-nice'.
|
|
|
|
|
|
2022-05-17 18:01:11 +00:00
|
|
|
|
`jit-lock-mode' is not a regular minor mode, and it doesn't
|
|
|
|
|
follow the regular conventions to switch the functionality on or
|
|
|
|
|
off. Instead, an ARG of nil will switch it off, and non-nil will
|
|
|
|
|
switch it on.
|
|
|
|
|
|
2014-02-13 08:26:01 +00:00
|
|
|
|
If you need to debug code run from jit-lock, see `jit-lock-debug-mode'."
|
2000-06-20 16:24:04 +00:00
|
|
|
|
(setq jit-lock-mode arg)
|
2014-02-13 03:29:47 +00:00
|
|
|
|
(cond
|
2016-04-29 20:44:13 +00:00
|
|
|
|
((and (buffer-base-buffer)
|
|
|
|
|
jit-lock-mode)
|
|
|
|
|
;; We're in an indirect buffer, and we're turning the mode on.
|
|
|
|
|
;; This doesn't work because jit-lock relies on the `fontified'
|
|
|
|
|
;; text-property which is shared with the base buffer.
|
2014-02-13 03:29:47 +00:00
|
|
|
|
(setq jit-lock-mode nil)
|
|
|
|
|
(message "Not enabling jit-lock: it does not work in indirect buffer"))
|
|
|
|
|
|
|
|
|
|
(jit-lock-mode ;; Turn Just-in-time Lock mode on.
|
|
|
|
|
|
|
|
|
|
;; Mark the buffer for refontification.
|
|
|
|
|
(jit-lock-refontify)
|
|
|
|
|
|
|
|
|
|
;; Install an idle timer for stealth fontification.
|
|
|
|
|
(when (and jit-lock-stealth-time (null jit-lock-stealth-timer))
|
|
|
|
|
(setq jit-lock-stealth-timer
|
|
|
|
|
(run-with-idle-timer jit-lock-stealth-time t
|
|
|
|
|
'jit-lock-stealth-fontify)))
|
|
|
|
|
|
|
|
|
|
;; Create, but do not activate, the idle timer for repeated
|
|
|
|
|
;; stealth fontification.
|
|
|
|
|
(when (and jit-lock-stealth-time (null jit-lock-stealth-repeat-timer))
|
|
|
|
|
(setq jit-lock-stealth-repeat-timer (timer-create))
|
|
|
|
|
(timer-set-function jit-lock-stealth-repeat-timer
|
|
|
|
|
'jit-lock-stealth-fontify '(t)))
|
|
|
|
|
|
|
|
|
|
;; Init deferred fontification timer.
|
|
|
|
|
(when (and jit-lock-defer-time (null jit-lock-defer-timer))
|
|
|
|
|
(setq jit-lock-defer-timer
|
|
|
|
|
(run-with-idle-timer jit-lock-defer-time t
|
|
|
|
|
'jit-lock-deferred-fontify)))
|
|
|
|
|
|
|
|
|
|
;; Initialize contextual fontification if requested.
|
|
|
|
|
(when (eq jit-lock-contextually t)
|
|
|
|
|
(unless jit-lock-context-timer
|
|
|
|
|
(setq jit-lock-context-timer
|
|
|
|
|
(run-with-idle-timer jit-lock-context-time t
|
2019-07-12 18:27:53 +00:00
|
|
|
|
(lambda ()
|
|
|
|
|
(unless jit-lock--antiblink-grace-timer
|
|
|
|
|
(jit-lock-context-fontify))))))
|
|
|
|
|
(add-hook 'post-command-hook 'jit-lock--antiblink-post-command nil t)
|
2014-02-13 03:29:47 +00:00
|
|
|
|
(setq jit-lock-context-unfontify-pos
|
|
|
|
|
(or jit-lock-context-unfontify-pos (point-max))))
|
|
|
|
|
|
|
|
|
|
;; Setup our hooks.
|
|
|
|
|
(add-hook 'after-change-functions 'jit-lock-after-change nil t)
|
2020-03-28 14:16:58 +00:00
|
|
|
|
(add-hook 'fontification-functions 'jit-lock-function nil t))
|
2014-02-13 03:29:47 +00:00
|
|
|
|
|
|
|
|
|
;; Turn Just-in-time Lock mode off.
|
|
|
|
|
(t
|
|
|
|
|
;; Cancel our idle timers.
|
|
|
|
|
(when (and (or jit-lock-stealth-timer jit-lock-defer-timer
|
|
|
|
|
jit-lock-context-timer)
|
|
|
|
|
;; Only if there's no other buffer using them.
|
|
|
|
|
(not (catch 'found
|
|
|
|
|
(dolist (buf (buffer-list))
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(when jit-lock-mode (throw 'found t)))))))
|
|
|
|
|
(when jit-lock-stealth-timer
|
|
|
|
|
(cancel-timer jit-lock-stealth-timer)
|
|
|
|
|
(setq jit-lock-stealth-timer nil))
|
|
|
|
|
(when jit-lock-context-timer
|
|
|
|
|
(cancel-timer jit-lock-context-timer)
|
|
|
|
|
(setq jit-lock-context-timer nil))
|
|
|
|
|
(when jit-lock-defer-timer
|
|
|
|
|
(cancel-timer jit-lock-defer-timer)
|
|
|
|
|
(setq jit-lock-defer-timer nil)))
|
|
|
|
|
|
|
|
|
|
;; Remove hooks.
|
|
|
|
|
(remove-hook 'after-change-functions 'jit-lock-after-change t)
|
|
|
|
|
(remove-hook 'fontification-functions 'jit-lock-function))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2013-01-13 01:23:48 +00:00
|
|
|
|
(define-minor-mode jit-lock-debug-mode
|
|
|
|
|
"Minor mode to help debug code run from jit-lock.
|
2018-07-02 03:34:53 +00:00
|
|
|
|
|
2013-01-13 01:23:48 +00:00
|
|
|
|
When this minor mode is enabled, jit-lock runs as little code as possible
|
|
|
|
|
during redisplay and moves the rest to a timer, where things
|
|
|
|
|
like `debug-on-error' and Edebug can be used."
|
2020-03-28 14:16:58 +00:00
|
|
|
|
:global t
|
2013-01-13 01:23:48 +00:00
|
|
|
|
(when jit-lock-defer-timer
|
|
|
|
|
(cancel-timer jit-lock-defer-timer)
|
|
|
|
|
(setq jit-lock-defer-timer nil))
|
|
|
|
|
(when jit-lock-debug-mode
|
|
|
|
|
(setq jit-lock-defer-timer
|
|
|
|
|
(run-with-idle-timer 0 t #'jit-lock--debug-fontify))))
|
|
|
|
|
|
|
|
|
|
(defvar jit-lock--debug-fontifying nil)
|
|
|
|
|
|
|
|
|
|
(defun jit-lock--debug-fontify ()
|
|
|
|
|
"Fontify what was deferred for debugging."
|
|
|
|
|
(when (and (not jit-lock--debug-fontifying)
|
|
|
|
|
jit-lock-defer-buffers (not memory-full))
|
|
|
|
|
(let ((jit-lock--debug-fontifying t)
|
|
|
|
|
(inhibit-debugger nil)) ;FIXME: Not sufficient!
|
|
|
|
|
;; Mark the deferred regions back to `fontified = nil'
|
|
|
|
|
(dolist (buffer jit-lock-defer-buffers)
|
|
|
|
|
(when (buffer-live-p buffer)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
;; (message "Jit-Debug %s" (buffer-name))
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
|
|
|
|
(let ((pos (point-min)))
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(when (eq (get-text-property pos 'fontified) 'defer)
|
|
|
|
|
(let ((beg pos)
|
|
|
|
|
(end (setq pos (next-single-property-change
|
|
|
|
|
pos 'fontified
|
|
|
|
|
nil (point-max)))))
|
|
|
|
|
(put-text-property beg end 'fontified nil)
|
|
|
|
|
(jit-lock-fontify-now beg end)))
|
|
|
|
|
(setq pos (next-single-property-change
|
|
|
|
|
pos 'fontified)))))))))
|
|
|
|
|
(setq jit-lock-defer-buffers nil))))
|
|
|
|
|
|
2000-10-05 21:30:02 +00:00
|
|
|
|
(defun jit-lock-register (fun &optional contextual)
|
2000-10-05 02:17:22 +00:00
|
|
|
|
"Register FUN as a fontification function to be called in this buffer.
|
|
|
|
|
FUN will be called with two arguments START and END indicating the region
|
2000-10-05 21:30:02 +00:00
|
|
|
|
that needs to be (re)fontified.
|
2021-08-23 20:14:00 +00:00
|
|
|
|
If non-nil, CONTEXTUAL means that a contextual fontification would be useful.
|
|
|
|
|
FUN can return a list of the form (jit-lock-bounds BEG . END),
|
|
|
|
|
to indicate the bounds of the region it actually fontified; JIT
|
|
|
|
|
font-lock will use this information to optimize redisplay cycles."
|
2000-10-05 02:13:25 +00:00
|
|
|
|
(add-hook 'jit-lock-functions fun nil t)
|
2004-01-30 00:08:38 +00:00
|
|
|
|
(when (and contextual jit-lock-contextually)
|
2013-01-30 17:03:44 +00:00
|
|
|
|
(setq-local jit-lock-contextually t))
|
2000-10-05 02:13:25 +00:00
|
|
|
|
(jit-lock-mode t))
|
|
|
|
|
|
|
|
|
|
(defun jit-lock-unregister (fun)
|
2000-10-05 02:17:22 +00:00
|
|
|
|
"Unregister FUN as a fontification function.
|
2000-10-05 02:13:25 +00:00
|
|
|
|
Only applies to the current buffer."
|
|
|
|
|
(remove-hook 'jit-lock-functions fun t)
|
2020-04-27 22:36:28 +00:00
|
|
|
|
(when (member jit-lock-functions '(nil '(t)))
|
|
|
|
|
(jit-lock-mode nil)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2000-10-08 19:01:17 +00:00
|
|
|
|
(defun jit-lock-refontify (&optional beg end)
|
|
|
|
|
"Force refontification of the region BEG..END (default whole buffer)."
|
2000-06-20 16:24:04 +00:00
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
2000-06-17 17:17:35 +00:00
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
2001-11-21 01:30:35 +00:00
|
|
|
|
(put-text-property (or beg (point-min)) (or end (point-max))
|
|
|
|
|
'fontified nil))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; On demand fontification.
|
|
|
|
|
|
|
|
|
|
(defun jit-lock-function (start)
|
|
|
|
|
"Fontify current buffer starting at position START.
|
|
|
|
|
This function is added to `fontification-functions' when `jit-lock-mode'
|
|
|
|
|
is active."
|
2005-10-29 19:45:40 +00:00
|
|
|
|
(when (and jit-lock-mode (not memory-full))
|
2014-12-16 14:25:57 +00:00
|
|
|
|
(if (not (and jit-lock-defer-timer
|
|
|
|
|
(or (not (eq jit-lock-defer-time 0))
|
|
|
|
|
(input-pending-p))))
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; No deferral.
|
|
|
|
|
(jit-lock-fontify-now start (+ start jit-lock-chunk-size))
|
|
|
|
|
;; Record the buffer for later fontification.
|
2004-01-26 22:56:09 +00:00
|
|
|
|
(unless (memq (current-buffer) jit-lock-defer-buffers)
|
|
|
|
|
(push (current-buffer) jit-lock-defer-buffers))
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; Mark the area as defer-fontified so that the redisplay engine
|
|
|
|
|
;; is happy and so that the idle timer can find the places to fontify.
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
|
|
|
|
(put-text-property start
|
|
|
|
|
(next-single-property-change
|
|
|
|
|
start 'fontified nil
|
|
|
|
|
(min (point-max) (+ start jit-lock-chunk-size)))
|
|
|
|
|
'fontified 'defer)))))
|
2000-10-08 19:01:17 +00:00
|
|
|
|
|
2015-03-31 01:33:20 +00:00
|
|
|
|
(defun jit-lock--run-functions (beg end)
|
|
|
|
|
(let ((tight-beg nil) (tight-end nil)
|
|
|
|
|
(loose-beg beg) (loose-end end))
|
|
|
|
|
(run-hook-wrapped
|
|
|
|
|
'jit-lock-functions
|
|
|
|
|
(lambda (fun)
|
|
|
|
|
(pcase-let*
|
|
|
|
|
((res (funcall fun beg end))
|
|
|
|
|
(`(,this-beg . ,this-end)
|
|
|
|
|
(if (eq (car-safe res) 'jit-lock-bounds)
|
|
|
|
|
(cdr res) (cons beg end))))
|
2015-03-31 04:04:39 +00:00
|
|
|
|
;; If all functions don't fontify the same region, we currently
|
|
|
|
|
;; just try to "still be correct". But we could go further and for
|
|
|
|
|
;; the chunks of text that was fontified by some functions but not
|
|
|
|
|
;; all, we could add text-properties indicating which functions were
|
|
|
|
|
;; already run to avoid running them redundantly when we get to
|
|
|
|
|
;; those chunks.
|
|
|
|
|
(setq tight-beg (max (or tight-beg (point-min)) this-beg))
|
2015-03-31 13:35:42 +00:00
|
|
|
|
(setq tight-end (min (or tight-end (point-max)) this-end))
|
|
|
|
|
(setq loose-beg (min loose-beg this-beg))
|
2015-03-31 01:33:20 +00:00
|
|
|
|
(setq loose-end (max loose-end this-end))
|
|
|
|
|
nil)))
|
|
|
|
|
`(,(min tight-beg beg) ,(max tight-end end) ,loose-beg ,loose-end)))
|
|
|
|
|
|
2000-10-08 19:01:17 +00:00
|
|
|
|
(defun jit-lock-fontify-now (&optional start end)
|
|
|
|
|
"Fontify current buffer from START to END.
|
|
|
|
|
Defaults to the whole buffer. END can be out of bounds."
|
2000-06-20 16:24:04 +00:00
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
2000-04-04 21:00:36 +00:00
|
|
|
|
(save-excursion
|
2002-10-01 16:54:42 +00:00
|
|
|
|
(unless start (setq start (point-min)))
|
|
|
|
|
(setq end (if end (min end (point-max)) (point-max)))
|
2006-08-01 19:01:24 +00:00
|
|
|
|
(let ((orig-start start) next)
|
2002-10-01 16:54:42 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
;; Fontify chunks beginning at START. The end of a
|
|
|
|
|
;; chunk is either `end', or the start of a region
|
|
|
|
|
;; before `end' that has already been fontified.
|
2006-09-26 15:35:34 +00:00
|
|
|
|
(while (and start (< start end))
|
2002-10-01 16:54:42 +00:00
|
|
|
|
;; Determine the end of this chunk.
|
|
|
|
|
(setq next (or (text-property-any start end 'fontified t)
|
|
|
|
|
end))
|
|
|
|
|
|
2016-05-07 23:01:22 +00:00
|
|
|
|
;; Avoid unnecessary work if the chunk is empty (bug#23278).
|
|
|
|
|
(when (> next start)
|
|
|
|
|
;; Fontify the chunk, and mark it as fontified.
|
|
|
|
|
;; We mark it first, to make sure that we don't indefinitely
|
|
|
|
|
;; re-execute this fontification if an error occurs.
|
|
|
|
|
(put-text-property start next 'fontified t)
|
|
|
|
|
(pcase-let
|
|
|
|
|
;; `tight' is the part we've fully refontified, and `loose'
|
|
|
|
|
;; is the part we've partly refontified (some of the
|
|
|
|
|
;; functions have refontified it but maybe not all).
|
|
|
|
|
((`(,tight-beg ,tight-end ,loose-beg ,_loose-end)
|
|
|
|
|
(condition-case err
|
|
|
|
|
(jit-lock--run-functions start next)
|
|
|
|
|
;; If the user quits (which shouldn't happen in normal
|
|
|
|
|
;; on-the-fly jit-locking), make sure the fontification
|
|
|
|
|
;; will be performed before displaying the block again.
|
|
|
|
|
(quit (put-text-property start next 'fontified nil)
|
|
|
|
|
(signal (car err) (cdr err))))))
|
|
|
|
|
|
2020-03-28 14:16:58 +00:00
|
|
|
|
;; In case we fontified more than requested, take
|
|
|
|
|
;; advantage of the good news.
|
2016-05-07 23:01:22 +00:00
|
|
|
|
(when (or (< tight-beg start) (> tight-end next))
|
|
|
|
|
(put-text-property tight-beg tight-end 'fontified t))
|
|
|
|
|
|
|
|
|
|
;; Make sure the contextual refontification doesn't re-refontify
|
|
|
|
|
;; what's already been refontified.
|
|
|
|
|
(when (and jit-lock-context-unfontify-pos
|
|
|
|
|
(< jit-lock-context-unfontify-pos tight-end)
|
|
|
|
|
(>= jit-lock-context-unfontify-pos tight-beg)
|
|
|
|
|
;; Don't move boundary forward if we have to
|
|
|
|
|
;; refontify previous text. Otherwise, we risk moving
|
|
|
|
|
;; it past the end of the multiline property and thus
|
|
|
|
|
;; forget about this multiline region altogether.
|
|
|
|
|
(not (get-text-property tight-beg
|
|
|
|
|
'jit-lock-defer-multiline)))
|
|
|
|
|
(setq jit-lock-context-unfontify-pos tight-end))
|
|
|
|
|
|
|
|
|
|
;; The redisplay engine has already rendered the buffer up-to
|
|
|
|
|
;; `orig-start' and won't notice if the above jit-lock-functions
|
|
|
|
|
;; changed the appearance of any part of the buffer prior
|
|
|
|
|
;; to that. So if `loose-beg' is before `orig-start', we need to
|
|
|
|
|
;; cause a new redisplay cycle after this one so that the changes
|
|
|
|
|
;; are properly reflected on screen.
|
|
|
|
|
;; To make such repeated redisplay happen less often, we can
|
|
|
|
|
;; eagerly extend the refontified region with
|
|
|
|
|
;; jit-lock-after-change-extend-region-functions.
|
|
|
|
|
(when (< loose-beg orig-start)
|
|
|
|
|
(run-with-timer 0 nil #'jit-lock-force-redisplay
|
|
|
|
|
(copy-marker loose-beg)
|
|
|
|
|
(copy-marker orig-start)))
|
|
|
|
|
|
|
|
|
|
;; Skip to the end of the fully refontified part.
|
|
|
|
|
(setq start tight-end)))
|
|
|
|
|
;; Find the start of the next chunk, if any.
|
|
|
|
|
(setq start
|
|
|
|
|
(text-property-any start end 'fontified nil))))))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2013-04-23 12:29:14 +00:00
|
|
|
|
(defun jit-lock-force-redisplay (start end)
|
2014-02-10 21:43:01 +00:00
|
|
|
|
"Force the display engine to re-render START's buffer from START to END.
|
|
|
|
|
This applies to the buffer associated with marker START."
|
2013-04-23 12:29:14 +00:00
|
|
|
|
(when (marker-buffer start)
|
|
|
|
|
(with-current-buffer (marker-buffer start)
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
|
|
|
|
(when (> end (point-max))
|
|
|
|
|
(setq end (point-max) start (min start end)))
|
|
|
|
|
(when (< start (point-min))
|
|
|
|
|
(setq start (point-min) end (max start end)))
|
|
|
|
|
;; Don't cause refontification (it's already been done), but just do
|
|
|
|
|
;; some random buffer change, so as to force redisplay.
|
|
|
|
|
(put-text-property start end 'fontified t)))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Stealth fontification.
|
|
|
|
|
|
|
|
|
|
(defsubst jit-lock-stealth-chunk-start (around)
|
2009-04-14 21:40:07 +00:00
|
|
|
|
"Return the start of the next chunk to fontify around position AROUND.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Value is nil if there is nothing more to fontify."
|
2000-01-31 19:47:38 +00:00
|
|
|
|
(if (zerop (buffer-size))
|
|
|
|
|
nil
|
2013-01-30 17:03:44 +00:00
|
|
|
|
(let* ((next (text-property-not-all around (point-max) 'fontified t))
|
|
|
|
|
(prev (previous-single-property-change around 'fontified))
|
|
|
|
|
(prop (get-text-property (max (point-min) (1- around))
|
|
|
|
|
'fontified))
|
|
|
|
|
(start (cond
|
|
|
|
|
((null prev)
|
|
|
|
|
;; There is no property change between AROUND
|
|
|
|
|
;; and the start of the buffer. If PROP is
|
|
|
|
|
;; non-nil, everything in front of AROUND is
|
|
|
|
|
;; fontified, otherwise nothing is fontified.
|
|
|
|
|
(if (eq prop t)
|
|
|
|
|
nil
|
|
|
|
|
(max (point-min)
|
|
|
|
|
(- around (/ jit-lock-chunk-size 2)))))
|
|
|
|
|
((eq prop t)
|
|
|
|
|
;; PREV is the start of a region of fontified
|
|
|
|
|
;; text containing AROUND. Start fontifying a
|
|
|
|
|
;; chunk size before the end of the unfontified
|
|
|
|
|
;; region in front of that.
|
|
|
|
|
(max (or (previous-single-property-change prev 'fontified)
|
|
|
|
|
(point-min))
|
|
|
|
|
(- prev jit-lock-chunk-size)))
|
|
|
|
|
(t
|
|
|
|
|
;; PREV is the start of a region of unfontified
|
|
|
|
|
;; text containing AROUND. Start at PREV or
|
|
|
|
|
;; chunk size in front of AROUND, whichever is
|
|
|
|
|
;; nearer.
|
|
|
|
|
(max prev (- around jit-lock-chunk-size)))))
|
|
|
|
|
(result (cond ((null start) next)
|
|
|
|
|
((null next) start)
|
|
|
|
|
((< (- around start) (- next around)) start)
|
|
|
|
|
(t next))))
|
|
|
|
|
result)))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2006-08-24 23:40:00 +00:00
|
|
|
|
(defun jit-lock-stealth-fontify (&optional repeat)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Fontify buffers stealthily.
|
2006-08-24 23:40:00 +00:00
|
|
|
|
This function is called repeatedly after Emacs has become idle for
|
|
|
|
|
`jit-lock-stealth-time' seconds. Optional argument REPEAT is expected
|
|
|
|
|
non-nil in a repeated invocation of this function."
|
|
|
|
|
;; Cancel timer for repeated invocations.
|
|
|
|
|
(unless repeat
|
|
|
|
|
(cancel-timer jit-lock-stealth-repeat-timer))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(unless (or executing-kbd-macro
|
2005-10-29 19:45:40 +00:00
|
|
|
|
memory-full
|
Do not call to `selected-window' where it is assumed by default.
Affected functions are `window-minibuffer-p', `window-dedicated-p',
`window-hscroll', `window-width', `window-height', `window-buffer',
`window-frame', `window-start', `window-point', `next-window'
and `window-display-table'.
* abbrev.el (abbrev--default-expand):
* bs.el (bs--show-with-configuration):
* buff-menu.el (Buffer-menu-mouse-select):
* calc/calc.el (calc):
* calendar/calendar.el (calendar-generate-window):
* calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
(diary-make-entry):
* comint.el (send-invisible, comint-dynamic-complete-filename)
(comint-dynamic-simple-complete, comint-dynamic-list-completions):
* completion.el (complete):
* dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
* disp-table.el (describe-current-display-table):
* doc-view.el (doc-view-insert-image):
* ebuff-menu.el (Electric-buffer-menu-mouse-select):
* ehelp.el (with-electric-help):
* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
* emacs-lisp/helper.el (Helper-help-scroller):
* emulation/cua-base.el (cua--post-command-handler-1):
* eshell/esh-mode.el (eshell-output-filter):
* ffap.el (ffap-gnus-wrapper):
* help-macro.el (make-help-screen):
* hilit-chg.el (highlight-compare-buffers):
* hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
* hl-line.el (global-hl-line-highlight):
* icomplete.el (icomplete-simple-completing-p):
* isearch.el (isearch-done):
* jit-lock.el (jit-lock-stealth-fontify):
* mail/rmailsum.el (rmail-summary-scroll-msg-up):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* mpc.el (mpc-tagbrowser, mpc):
* net/rcirc.el (rcirc-any-buffer):
* play/gomoku.el (gomoku-max-width, gomoku-max-height):
* play/landmark.el (landmark-max-width, landmark-max-height):
* play/zone.el (zone):
* progmodes/compile.el (compilation-goto-locus):
* progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
* progmodes/etags.el (find-tag-other-window):
* progmodes/fortran.el (fortran-column-ruler):
* progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
* progmodes/verilog-mode.el (verilog-point-text):
* reposition.el (reposition-window):
* rot13.el (toggle-rot13-mode):
* server.el (server-switch-buffer):
* shell.el (shell-dynamic-complete-command)
(shell-dynamic-complete-environment-variable):
* simple.el (insert-buffer, set-selective-display)
(delete-completion-window):
* speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
(speedbar-recenter):
* startup.el (fancy-splash-head):
* textmodes/ispell.el (ispell-command-loop):
* textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
* tutorial.el (help-with-tutorial):
* vc/add-log.el (add-change-log-entry):
* vc/compare-w.el (compare-windows):
* vc/ediff-help.el (ediff-indent-help-message):
* vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
* vc/ediff-wind.el (ediff-skip-unsuitable-frames)
(ediff-setup-control-frame):
* vc/emerge.el (emerge-position-region):
* vc/pcvs-util.el (cvs-bury-buffer):
* window.el (walk-windows, mouse-autoselect-window-select):
* winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
|
|
|
|
(window-minibuffer-p)
|
2006-08-24 23:40:00 +00:00
|
|
|
|
;; For first invocation set up `jit-lock-stealth-buffers'.
|
|
|
|
|
;; In repeated invocations it's already been set up.
|
|
|
|
|
(null (if repeat
|
|
|
|
|
jit-lock-stealth-buffers
|
|
|
|
|
(setq jit-lock-stealth-buffers (buffer-list)))))
|
|
|
|
|
(let ((buffer (car jit-lock-stealth-buffers))
|
|
|
|
|
(delay 0)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
minibuffer-auto-raise
|
2006-08-24 23:40:00 +00:00
|
|
|
|
message-log-max
|
|
|
|
|
start)
|
|
|
|
|
(if (and jit-lock-stealth-load
|
2014-11-04 16:30:48 +00:00
|
|
|
|
;; load-average can return nil. The w32 emulation does
|
|
|
|
|
;; that during the first few dozens of seconds after
|
|
|
|
|
;; startup.
|
|
|
|
|
(> (or (car (load-average)) 0) jit-lock-stealth-load))
|
2006-08-24 23:40:00 +00:00
|
|
|
|
;; Wait a little if load is too high.
|
|
|
|
|
(setq delay jit-lock-stealth-time)
|
|
|
|
|
(if (buffer-live-p buffer)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(if (and jit-lock-mode
|
|
|
|
|
(setq start (jit-lock-stealth-chunk-start (point))))
|
|
|
|
|
;; Fontify one block of at most `jit-lock-chunk-size'
|
|
|
|
|
;; characters.
|
|
|
|
|
(with-temp-message (if jit-lock-stealth-verbose
|
|
|
|
|
(concat "JIT stealth lock "
|
|
|
|
|
(buffer-name)))
|
|
|
|
|
(jit-lock-fontify-now start
|
|
|
|
|
(+ start jit-lock-chunk-size))
|
|
|
|
|
;; Run again after `jit-lock-stealth-nice' seconds.
|
|
|
|
|
(setq delay (or jit-lock-stealth-nice 0)))
|
|
|
|
|
;; Nothing to fontify here. Remove this buffer from
|
|
|
|
|
;; `jit-lock-stealth-buffers' and run again immediately.
|
|
|
|
|
(setq jit-lock-stealth-buffers (cdr jit-lock-stealth-buffers))))
|
|
|
|
|
;; Buffer is no longer live. Remove it from
|
|
|
|
|
;; `jit-lock-stealth-buffers' and run again immediately.
|
|
|
|
|
(setq jit-lock-stealth-buffers (cdr jit-lock-stealth-buffers))))
|
|
|
|
|
;; Call us again.
|
|
|
|
|
(when jit-lock-stealth-buffers
|
|
|
|
|
(timer-set-idle-time jit-lock-stealth-repeat-timer (current-idle-time))
|
|
|
|
|
(timer-inc-time jit-lock-stealth-repeat-timer delay)
|
|
|
|
|
(timer-activate-when-idle jit-lock-stealth-repeat-timer t)))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Deferred fontification.
|
|
|
|
|
|
2001-11-21 01:30:35 +00:00
|
|
|
|
(defun jit-lock-deferred-fontify ()
|
|
|
|
|
"Fontify what was deferred."
|
2005-10-29 19:45:40 +00:00
|
|
|
|
(when (and jit-lock-defer-buffers (not memory-full))
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; Mark the deferred regions back to `fontified = nil'
|
2004-01-26 22:56:09 +00:00
|
|
|
|
(dolist (buffer jit-lock-defer-buffers)
|
2001-11-21 01:30:35 +00:00
|
|
|
|
(when (buffer-live-p buffer)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
;; (message "Jit-Defer %s" (buffer-name))
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
|
|
|
|
(let ((pos (point-min)))
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(when (eq (get-text-property pos 'fontified) 'defer)
|
|
|
|
|
(put-text-property
|
|
|
|
|
pos (setq pos (next-single-property-change
|
|
|
|
|
pos 'fontified nil (point-max)))
|
|
|
|
|
'fontified nil))
|
2013-01-13 01:23:48 +00:00
|
|
|
|
(setq pos (next-single-property-change
|
|
|
|
|
pos 'fontified)))))))))
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; Force fontification of the visible parts.
|
2015-09-12 00:32:33 +00:00
|
|
|
|
(let ((buffers jit-lock-defer-buffers)
|
|
|
|
|
(jit-lock-defer-timer nil))
|
|
|
|
|
(setq jit-lock-defer-buffers nil)
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; (message "Jit-Defer Now")
|
2015-09-12 00:32:33 +00:00
|
|
|
|
(unless (redisplay) ;FIXME: Should we `force'?
|
|
|
|
|
(setq jit-lock-defer-buffers buffers))
|
2001-11-21 01:30:35 +00:00
|
|
|
|
;; (message "Jit-Defer Done")
|
|
|
|
|
)))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2001-11-21 01:30:35 +00:00
|
|
|
|
|
2004-01-30 00:20:46 +00:00
|
|
|
|
(defun jit-lock-context-fontify ()
|
|
|
|
|
"Refresh fontification to take new context into account."
|
2005-10-29 19:45:40 +00:00
|
|
|
|
(unless memory-full
|
|
|
|
|
(dolist (buffer (buffer-list))
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(when jit-lock-context-unfontify-pos
|
|
|
|
|
;; (message "Jit-Context %s" (buffer-name))
|
|
|
|
|
(save-restriction
|
2013-01-30 17:03:44 +00:00
|
|
|
|
;; Don't be blindsided by narrowing that starts in the middle
|
|
|
|
|
;; of a jit-lock-defer-multiline.
|
2017-09-13 22:52:52 +00:00
|
|
|
|
(widen)
|
2005-10-29 19:45:40 +00:00
|
|
|
|
(when (and (>= jit-lock-context-unfontify-pos (point-min))
|
|
|
|
|
(< jit-lock-context-unfontify-pos (point-max)))
|
|
|
|
|
;; If we're in text that matches a complex multi-line
|
|
|
|
|
;; font-lock pattern, make sure the whole text will be
|
|
|
|
|
;; redisplayed eventually.
|
|
|
|
|
;; Despite its name, we treat jit-lock-defer-multiline here
|
|
|
|
|
;; rather than in jit-lock-defer since it has to do with multiple
|
|
|
|
|
;; lines, i.e. with context.
|
|
|
|
|
(when (get-text-property jit-lock-context-unfontify-pos
|
|
|
|
|
'jit-lock-defer-multiline)
|
|
|
|
|
(setq jit-lock-context-unfontify-pos
|
|
|
|
|
(or (previous-single-property-change
|
|
|
|
|
jit-lock-context-unfontify-pos
|
|
|
|
|
'jit-lock-defer-multiline)
|
|
|
|
|
(point-min))))
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
|
|
|
|
;; Force contextual refontification.
|
|
|
|
|
(remove-text-properties
|
|
|
|
|
jit-lock-context-unfontify-pos (point-max)
|
|
|
|
|
'(fontified nil jit-lock-defer-multiline nil)))
|
|
|
|
|
(setq jit-lock-context-unfontify-pos (point-max)))))))))
|
2004-01-30 00:20:46 +00:00
|
|
|
|
|
2006-08-01 19:01:24 +00:00
|
|
|
|
(defvar jit-lock-start) (defvar jit-lock-end) ; Dynamically scoped variables.
|
|
|
|
|
(defvar jit-lock-after-change-extend-region-functions nil
|
|
|
|
|
"Hook that can extend the text to refontify after a change.
|
|
|
|
|
This is run after every buffer change. The functions are called with
|
|
|
|
|
the three arguments of `after-change-functions': START END OLD-LEN.
|
|
|
|
|
The extended region to refontify is returned indirectly by modifying
|
|
|
|
|
the variables `jit-lock-start' and `jit-lock-end'.
|
|
|
|
|
|
2006-08-17 15:10:21 +00:00
|
|
|
|
Note that extending the region this way is not strictly necessary, except
|
|
|
|
|
that the nature of the redisplay code tends to otherwise leave some of
|
|
|
|
|
the rehighlighted text displayed with the old highlight until the next
|
|
|
|
|
redisplay (see comment about repeated redisplay in `jit-lock-fontify-now').")
|
2006-08-01 19:01:24 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(defun jit-lock-after-change (start end old-len)
|
|
|
|
|
"Mark the rest of the buffer as not fontified after a change.
|
|
|
|
|
Installed on `after-change-functions'.
|
|
|
|
|
START and END are the start and end of the changed text. OLD-LEN
|
|
|
|
|
is the pre-change length.
|
|
|
|
|
This function ensures that lines following the change will be refontified
|
|
|
|
|
in case the syntax of those lines has changed. Refontification
|
|
|
|
|
will take place when text is fontified stealthily."
|
2005-10-29 19:45:40 +00:00
|
|
|
|
(when (and jit-lock-mode (not memory-full))
|
2006-08-01 19:01:24 +00:00
|
|
|
|
(let ((jit-lock-start start)
|
|
|
|
|
(jit-lock-end end))
|
|
|
|
|
(with-buffer-prepared-for-jit-lock
|
2015-04-05 14:40:57 +00:00
|
|
|
|
(run-hook-with-args 'jit-lock-after-change-extend-region-functions
|
|
|
|
|
start end old-len)
|
|
|
|
|
;; Make sure we change at least one char (in case of deletions).
|
|
|
|
|
(setq jit-lock-end (min (max jit-lock-end (1+ start)) (point-max)))
|
|
|
|
|
;; Request refontification.
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(put-text-property jit-lock-start jit-lock-end 'fontified nil)))
|
2006-08-01 19:01:24 +00:00
|
|
|
|
;; Mark the change for deferred contextual refontification.
|
|
|
|
|
(when jit-lock-context-unfontify-pos
|
|
|
|
|
(setq jit-lock-context-unfontify-pos
|
|
|
|
|
;; Here we use `start' because nothing guarantees that the
|
|
|
|
|
;; text between start and end will be otherwise refontified:
|
|
|
|
|
;; usually it will be refontified by virtue of being
|
|
|
|
|
;; displayed, but if it's outside of any displayed area in the
|
|
|
|
|
;; buffer, only jit-lock-context-* will re-fontify it.
|
|
|
|
|
(min jit-lock-context-unfontify-pos jit-lock-start))))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2019-07-12 18:27:53 +00:00
|
|
|
|
(defun jit-lock--antiblink-post-command ()
|
|
|
|
|
(let* ((new-l-b-p (copy-marker (line-beginning-position)))
|
|
|
|
|
(l-b-p-2 (line-beginning-position 2))
|
|
|
|
|
(same-line
|
|
|
|
|
(and jit-lock-antiblink-grace
|
|
|
|
|
(not (= new-l-b-p l-b-p-2))
|
|
|
|
|
(eq (marker-buffer jit-lock--antiblink-line-beginning-position)
|
|
|
|
|
(current-buffer))
|
|
|
|
|
(= new-l-b-p jit-lock--antiblink-line-beginning-position)))
|
|
|
|
|
(new-s-o-c
|
|
|
|
|
(and same-line
|
|
|
|
|
(nth 8 (save-excursion (syntax-ppss l-b-p-2))))))
|
|
|
|
|
(cond (;; Opened a new multiline string...
|
|
|
|
|
(and same-line
|
|
|
|
|
(null jit-lock--antiblink-string-or-comment) new-s-o-c)
|
|
|
|
|
(setq jit-lock--antiblink-grace-timer
|
|
|
|
|
(run-with-idle-timer jit-lock-antiblink-grace nil
|
|
|
|
|
(lambda ()
|
|
|
|
|
(jit-lock-context-fontify)
|
|
|
|
|
(setq jit-lock--antiblink-grace-timer
|
|
|
|
|
nil)))))
|
|
|
|
|
(;; Closed an unterminated multiline string.
|
|
|
|
|
(and same-line
|
|
|
|
|
(null new-s-o-c) jit-lock--antiblink-string-or-comment)
|
|
|
|
|
;; Kill the grace timer, might already have run and died.
|
|
|
|
|
;; Don't refontify immediately: it adds an unreasonable
|
|
|
|
|
;; delay to a well-behaved operation. Leave it for the
|
|
|
|
|
;; `jit-lock-context-timer' as usual.
|
|
|
|
|
(when jit-lock--antiblink-grace-timer
|
|
|
|
|
(cancel-timer jit-lock--antiblink-grace-timer)
|
|
|
|
|
(setq jit-lock--antiblink-grace-timer nil)))
|
|
|
|
|
(same-line
|
2019-12-05 15:43:06 +00:00
|
|
|
|
;; In same line, but no state change, leave everything as it was.
|
2019-07-12 18:27:53 +00:00
|
|
|
|
)
|
|
|
|
|
(t
|
2019-12-05 15:43:06 +00:00
|
|
|
|
;; Left the line somehow or customized feature away, etc.;
|
2019-07-12 18:27:53 +00:00
|
|
|
|
;; kill timer if running, resume normal operation.
|
|
|
|
|
(when jit-lock--antiblink-grace-timer
|
|
|
|
|
;; Do refontify immediately, adding a small delay. This
|
2019-12-05 15:43:06 +00:00
|
|
|
|
;; makes sense because it signals somehow that we are
|
2019-07-12 18:27:53 +00:00
|
|
|
|
;; leaving the unstable state.
|
|
|
|
|
(jit-lock-context-fontify)
|
|
|
|
|
(cancel-timer jit-lock--antiblink-grace-timer)
|
|
|
|
|
(setq jit-lock--antiblink-grace-timer nil))))
|
2019-12-05 15:43:06 +00:00
|
|
|
|
;; Update variables (and release the marker).
|
2019-07-12 18:27:53 +00:00
|
|
|
|
(set-marker jit-lock--antiblink-line-beginning-position nil)
|
|
|
|
|
(setq jit-lock--antiblink-line-beginning-position new-l-b-p
|
|
|
|
|
jit-lock--antiblink-string-or-comment new-s-o-c)))
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(provide 'jit-lock)
|
|
|
|
|
|
2001-07-16 12:23:00 +00:00
|
|
|
|
;;; jit-lock.el ends here
|