From: <miha@kamnitnik.top>
To: Eli Zaretskii <eliz@gnu.org>
Cc: larsi@gnus.org, emacs-devel@gnu.org
Subject: Re: master 5a8a5e3d: Input fontification for M-x shell
Date: Sun, 11 Sep 2022 13:06:43 +0200 [thread overview]
Message-ID: <87h71e2mrg.fsf@miha-pc> (raw)
In-Reply-To: <83mtb79qqi.fsf@gnu.org>
[-- Attachment #1.1: Type: text/plain, Size: 636 bytes --]
Eli Zaretskii <eliz@gnu.org> writes:
> [...]
> You say "create an indirect buffer and set up...", but isn't that done
> by some of the other code you submitted? If so, instead of
> "create...and set up...", which implies that the user of this variable
> must do so, the doc string should say something like
>
> If input fontification or indentation is enabled, function
> `so-and-so' creates an indirect buffer and sets up its major mode
> and syntax highlighting. This hook is useful for running in that
> indirect buffer when its major mode is turned on.
Okay, thanks for feedback, please find a refined patch attached.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-Improve-doc-strings-of-comint-input-fontification-me.patch --]
[-- Type: text/x-patch, Size: 6156 bytes --]
From dc79db872ac0a90b759f7999afadc75a60b2ade2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miha=20Rihtar=C5=A1i=C4=8D?= <miha@kamnitnik.top>
Date: Sat, 10 Sep 2022 17:47:12 +0200
Subject: [PATCH] Improve doc strings of comint input fontification mechanism
---
lisp/comint.el | 14 +++++++++-----
lisp/ielm.el | 13 ++++++++++---
lisp/shell.el | 27 +++++++++++++++++++--------
3 files changed, 38 insertions(+), 16 deletions(-)
diff --git a/lisp/comint.el b/lisp/comint.el
index 751e561d3e..696dac3d12 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -4030,9 +4030,13 @@ comint-indirect-setup-function
`after-change-major-mode-hook' are bound to nil.")
(defcustom comint-indirect-setup-hook nil
- "Hook run after setting up an indirect comint fontification buffer.
-It is run after the indirect buffer is set up for fontification
-of input regions."
+ "Hook run in an indirect buffer for input fontification.
+Input fontification and indentation, if enabled, is performed in
+an indirect buffer, whose major mode and syntax highlighting are
+set up according to `comint-indirect-setup-function'. After this
+setup is done, run this hook with the indirect buffer as the
+current buffer. This can be used to further customize
+fontification and other behaviour of the indirect buffer."
:group 'comint
:type 'hook
:version "29.1")
@@ -4117,8 +4121,8 @@ comint--fl-ppss-flush-indirect
(defun comint--fl-fontify-region (fun beg end verbose)
"Fontify process output and user input in the current comint buffer.
-First, highlight the region between BEG and END using FUN. Then
-highlight only the input text in the region with the help of an
+First, fontify the region between BEG and END using FUN. Then
+fontify only the input text in the region with the help of an
indirect buffer. VERBOSE is passed to the fontify-region
functions. Skip fontification of input regions with non-nil
`comint--fl-inhibit-fontification' text property."
diff --git a/lisp/ielm.el b/lisp/ielm.el
index 211804210c..4a10c00297 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -475,16 +475,23 @@ ielm-set-pm
;;; Input fontification
(defcustom ielm-comint-fl-enable t
- "Enable highlighting of input in ielm buffers.
+ "Enable fontification of input in ielm buffers.
This variable only has effect when creating an ielm buffer. Use
-the command `comint-fl-mode' to toggle highlighting of input in
+the command `comint-fl-mode' to toggle fontification of input in
an already existing ielm buffer."
:type 'boolean
:safe 'booleanp
:version "29.1")
(defcustom ielm-indirect-setup-hook nil
- "Hook run after setting up an indirect ielm fontification buffer."
+ "Hook run in an indirect buffer for input fontification.
+Input fontification and indentation of an IELM buffer, if
+enabled, is performed in an indirect buffer, whose indentation
+and syntax highlighting are set up with `emacs-lisp-mode'. In
+addition to `comint-indirect-setup-hook', run this hook with the
+indirect buffer as the current buffer after its setup is done.
+This can be used to further customize fontification and other
+behaviour of the indirect buffer."
:type 'boolean
:safe 'booleanp
:version "29.1")
diff --git a/lisp/shell.el b/lisp/shell.el
index eccac66376..834ca6b627 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -309,16 +309,23 @@ shell-input-autoexpand
:group 'shell)
(defcustom shell-comint-fl-enable t
- "Enable highlighting of input in shell buffers.
+ "Enable fontification of input in shell buffers.
This variable only has effect when the shell is started. Use the
-command `comint-fl-mode' to toggle highlighting of input."
+command `comint-fl-mode' to toggle fontification of input."
:type 'boolean
:group 'shell
:safe 'booleanp
:version "29.1")
(defcustom shell-indirect-setup-hook nil
- "Hook run after setting up an indirect shell fontification buffer."
+ "Hook run in an indirect buffer for input fontification.
+Input fontification and indentation of a `shell-mode' buffer, if
+enabled, is performed in an indirect buffer, whose indentation
+and syntax highlighting is set up with `sh-mode'. In addition to
+`comint-indirect-setup-hook', run this hook with the indirect
+buffer as the current buffer after its setup is done. This can
+be used to further customize fontification and other behaviour of
+the indirect buffer."
:type 'boolean
:group 'shell
:safe 'booleanp
@@ -1680,7 +1687,7 @@ shell-highlight-undef-matcher
t))
(defvar-local shell--highlight-undef-indirect nil
- "t if shell commands are fontified in `comint-indirect-buffer'.")
+ "Non-nil if shell commands are fontified in `comint-indirect-buffer'.")
(declare-function sh-feature "sh-script" (alist &optional function))
(defvar sh-leading-keywords)
@@ -1700,7 +1707,7 @@ shell-highlight-undef-mode
(font-lock-remove-keywords nil shell-highlight-undef-keywords))))
(font-lock-remove-keywords nil shell-highlight-undef-keywords))
(remove-hook 'comint-fl-mode-hook
- #'shell-highlight-undef-reset-mode t)
+ #'shell-highlight-undef-mode-restart t)
(when shell-highlight-undef-mode
(when comint-use-prompt-regexp
@@ -1742,12 +1749,16 @@ shell-highlight-undef-mode
(t (funcall setup))))
(add-hook 'comint-fl-mode-hook
- #'shell-highlight-undef-reset-mode nil t))
+ #'shell-highlight-undef-mode-restart nil t))
(font-lock-flush))
-(defun shell-highlight-undef-reset-mode ()
- "If `shell-highlight-undef-mode' is on, turn it off and on."
+(defun shell-highlight-undef-mode-restart ()
+ "If `shell-highlight-undef-mode' is on, restart it.
+`shell-highlight-undef-mode' performs its setup differently
+depending on `comint-fl-mode'. It's useful to call this function
+when switching `comint-fl-mode' in order to make
+`shell-highlight-undef-mode' redo its setup."
(when shell-highlight-undef-mode
(shell-highlight-undef-mode 1)))
--
2.37.2
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]
next prev parent reply other threads:[~2022-09-11 11:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-09 19:23 master 5a8a5e3d: Input fontification for M-x shell Eli Zaretskii
2022-09-10 15:53 ` miha
2022-09-10 15:46 ` Eli Zaretskii
2022-09-11 11:06 ` miha [this message]
2022-09-11 10:59 ` Lars Ingebrigtsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87h71e2mrg.fsf@miha-pc \
--to=miha@kamnitnik.top \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=larsi@gnus.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).