GNU bug report logs -
#64792
js-mode doesn't recognize LS and PS line endings, leading to incorrect syntax highlighting
Previous Next
To reply to this bug, email your comments to 64792 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#64792
; Package
emacs
.
(Sat, 22 Jul 2023 16:43:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Clément Pit-Claudel <cpitclaudel <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Sat, 22 Jul 2023 16:43:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi all,
The following code prints "Hello," and "world!" in JavaScript:
//
console.debug("Hello,");
//
console.debug("world!");
There is a LINE SEPARATOR after the first //, and a PARAGRAPH SEPARATOR after the second //. Both of these are valid line terminators in ECMAScript (https://262.ecma-international.org/10.0/#table-33), but since js-mode does not recognize them, it displays the whole buffer in comment face (the only indication that something fishy is going on is a thin box around each character).
Other editors handle this in various ways. gedit treats LS and PS as line breaks, but still displays the first call to console.debug in comment face. vscode displays both LS and PS as question marks but warns about them and highlights the code correctly.
Is there an easy way to make Emacs treat LS and PS as newlines in js-mode? Ideally it would display the calls to console.debug on their own separate lines, like this:
//[LS]
console.debug("Hello,");
//[PS]
console.debug("world!");
… but it would already be nice to fix the syntax highlighting to not use the comment font. For that these characters could be marked as comment enders. There may be additional work to do to check uses of \n of "^" and "$" in regular expressions, too.
Clément.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#64792
; Package
emacs
.
(Sat, 22 Jul 2023 16:53:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 64792 <at> debbugs.gnu.org (full text, mbox):
> Date: Sat, 22 Jul 2023 18:41:42 +0200
> From: Clément Pit-Claudel <cpitclaudel <at> gmail.com>
>
> Is there an easy way to make Emacs treat LS and PS as newlines in js-mode? Ideally it would display the calls to console.debug on their own separate lines, like this:
>
> //[LS]
> console.debug("Hello,");
> //[PS]
> console.debug("world!");
This can be accomplished via the display-table, but I doubt that it
would satisfy you.
> … but it would already be nice to fix the syntax highlighting to not use the comment font. For that these characters could be marked as comment enders. There may be additional work to do to check uses of \n of "^" and "$" in regular expressions, too.
AFAIU, this requires either changes to the font-lock regexps or
low-level change to regex-emacs.c such that it considers these two
separator characters as equivalents of a newline.
(If you ask me, Unicode made a heck of a mess by introducing these
characters, witness the problems editors out there have to this day
with handling them.)
This bug report was last modified 1 year and 124 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.