]> git.eshelyaron.com Git - emacs.git/commitdiff
Update comment about comint-osc-handlers
authorMatthias Meulien <orontee@gmail.com>
Tue, 17 May 2022 21:36:27 +0000 (23:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 17 May 2022 21:36:27 +0000 (23:36 +0200)
* lisp/comint.el: Update comment about comint-osc-handlers.

lisp/comint.el

index 3dc80c20acb489f0aed3f11ba9079e82c3a01faf..3da61fb992f540df81c39bffc355eebfe150a72e 100644 (file)
@@ -3978,10 +3978,12 @@ REGEXP-GROUP is the regular expression group in REGEXP to use."
 \f
 ;;; OSC escape sequences (Operating System Commands)
 ;;============================================================================
-;; Adding `comint-osc-process-output' to `comint-output-filter-functions'
-;; enables the interpretation of OSC escape sequences.  By default, only
-;; OSC 8, for hyperlinks, is acted upon.  Adding more entries to
-;; `comint-osc-handlers' allows a customized treatment of further sequences.
+;; Adding `comint-osc-process-output' to
+;; `comint-output-filter-functions' enables the interpretation of OSC
+;; escape sequences.  By default, OSC 7 and 8 (for current directory
+;; and hyperlinks respectively) are acted upon.  Adding more entries
+;; to `comint-osc-handlers' allows a customized treatment of further
+;; sequences.
 
 (defvar-local comint-osc-handlers '(("7" . comint-osc-directory-tracker)
                                     ("8" . comint-osc-hyperlink-handler))