GNU bug report logs - #74366
31.0.50; tree-sitter

Previous Next

Package: emacs;

Reported by: me Latpaw <jiangyuezhang <at> outlook.com>

Date: Fri, 15 Nov 2024 11:15:01 UTC

Severity: normal

Merged with 73404

Found in version 30.0.50

Fixed in version 31.0.50

Done: Juri Linkov <juri <at> linkov.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74366 in the body.
You can then email your comments to 74366 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Fri, 15 Nov 2024 11:15:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to me Latpaw <jiangyuezhang <at> outlook.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Fri, 15 Nov 2024 11:15:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: me Latpaw <jiangyuezhang <at> outlook.com>
To: "bug-gnu-emacs <at> gnu.org" <bug-gnu-emacs <at> gnu.org>
Subject: 31.0.50; tree-sitter
Date: Fri, 15 Nov 2024 06:52:41 +0000
[Message part 1 (text/plain, inline)]
open ts file, and enable typescript-ts-mode.
just like
```
function hello() {
   console.log('hello'),
    return 'hello';
}
```
Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
end of ), not }. It was expected to end of }.





In GNU Emacs 31.0.50 (build 1, aarch64-apple-darwin21.6.0, NS
appkit-2113.60 Version 12.6.6 (Build 21G646)) of 2024-10-17 built on
armbob.lan
Windowing system distributor 'Apple', version 10.3.2566
System Description: macOS 15.0

Configured using:
'configure --with-ns '--enable-locallisppath=/Library/Application
Support/Emacs/${version}/site-lisp:/Library/Application
Support/Emacs/site-lisp' --with-modules 'CFLAGS=-DFD_SETSIZE=10000
-DDARWIN_UNLIMITED_SELECT' --with-x-toolkit=no'

Configured features:
ACL GLIB GMP GNUTLS JPEG LIBXML2 MODULES NOTIFY KQUEUE NS PDUMPER PNG
RSVG SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER ZLIB

Important settings:
value of $LANG: zh_CN.UTF-8
locale-coding-system: utf-8-unix

Major mode: TypeScript

Minor modes in effect:
tooltip-mode: t
global-eldoc-mode: t
show-paren-mode: t
electric-indent-mode: t
mouse-wheel-mode: t
tool-bar-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
blink-cursor-mode: t
minibuffer-regexp-mode: t
line-number-mode: t
indent-tabs-mode: t
transient-mark-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message mailcap yank-media puny dired
dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068
epg-config gnus-util text-property-search time-date mm-decode mm-bodies
mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail
rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils cl-seq
typescript-ts-mode js c-ts-common json subr-x map byte-opt gv bytecomp
byte-compile imenu cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles
cc-align cc-engine cc-vars cc-defs treesit cl-loaddefs cl-lib china-util
rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook
vc-hooks lisp-float-type elisp-mode mwheel term/ns-win ns-win
ucs-normalize mule-util term/common-win tool-bar dnd fontset image
regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode
prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu
timer select scroll-bar mouse jit-lock font-lock syntax font-core
term/tty-colors frame minibuffer nadvice seq simple cl-generic
indonesian philippine cham georgian utf-8-lang misc-lang vietnamese
tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek
romanian slovak czech european ethiopic indian cyrillic chinese
composite emoji-zwj charscript charprop case-table epa-hook
jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs
theme-loaddefs faces cus-face macroexp files window text-properties
overlay sha1 md5 base64 format env code-pages mule custom widget keymap
hashtable-print-readable backquote threads kqueue cocoa ns multi-tty
make-network-process emacs)

Memory information:
((conses 16 77278 9480) (symbols 48 8544 0) (strings 32 23035 2044)
(string-bytes 1 758772) (vectors 16 15819)
(vector-slots 8 223623 8961) (floats 8 27 6) (intervals 56 356 0)
(buffers 992 13))


[Message part 2 (text/html, inline)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Sat, 16 Nov 2024 14:30:02 GMT) Full text and rfc822 format available.

Message #8 received at 74366 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: me Latpaw <jiangyuezhang <at> outlook.com>,
 Theodor Thornhill <theo <at> thornhill.no>, Yuan Fu <casouri <at> gmail.com>
Cc: 74366 <at> debbugs.gnu.org
Subject: Re: bug#74366: 31.0.50; tree-sitter
Date: Sat, 16 Nov 2024 16:29:47 +0200
> From: me Latpaw <jiangyuezhang <at> outlook.com>
> Date: Fri, 15 Nov 2024 06:52:41 +0000
> 
> open ts file, and enable typescript-ts-mode.
> just like
> ```
> function hello() {
>    console.log('hello'),
>     return 'hello';
> }
> ```
> Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
> end of ), not }. It was expected to end of }.

Here it jumps to after "'hello';".

Yuan and Theo, could you please take a look?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Sat, 16 Nov 2024 19:20:01 GMT) Full text and rfc822 format available.

Message #11 received at 74366 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: 74366 <at> debbugs.gnu.org, Yuan Fu <casouri <at> gmail.com>,
 me Latpaw <jiangyuezhang <at> outlook.com>, Theodor Thornhill <theo <at> thornhill.no>
Subject: Re: bug#74366: 31.0.50; tree-sitter
Date: Sat, 16 Nov 2024 21:18:50 +0200
>> open ts file, and enable typescript-ts-mode.
>> just like
>> ```
>> function hello() {
>>    console.log('hello'),
>>     return 'hello';
>> }
>> ```
>> Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
>> end of ), not }. It was expected to end of }.
>
> Here it jumps to after "'hello';".

This should work with the fix from bug#73404.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Sat, 30 Nov 2024 09:57:01 GMT) Full text and rfc822 format available.

Message #14 received at 74366 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Juri Linkov <juri <at> linkov.net>
Cc: casouri <at> gmail.com, 74366 <at> debbugs.gnu.org, theo <at> thornhill.no,
 jiangyuezhang <at> outlook.com
Subject: Re: bug#74366: 31.0.50; tree-sitter
Date: Sat, 30 Nov 2024 11:56:37 +0200
> Cc: 74366 <at> debbugs.gnu.org, Yuan Fu <casouri <at> gmail.com>,
>  me Latpaw <jiangyuezhang <at> outlook.com>, Theodor Thornhill <theo <at> thornhill.no>
> From: Juri Linkov <juri <at> linkov.net>
> Date: Sat, 16 Nov 2024 21:18:50 +0200
> 
> >> open ts file, and enable typescript-ts-mode.
> >> just like
> >> ```
> >> function hello() {
> >>    console.log('hello'),
> >>     return 'hello';
> >> }
> >> ```
> >> Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
> >> end of ), not }. It was expected to end of }.
> >
> > Here it jumps to after "'hello';".
> 
> This should work with the fix from bug#73404.

Should we merge this bug with bug#73404?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Sat, 30 Nov 2024 19:46:01 GMT) Full text and rfc822 format available.

Message #17 received at 74366 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: casouri <at> gmail.com, 74366 <at> debbugs.gnu.org, theo <at> thornhill.no,
 jiangyuezhang <at> outlook.com
Subject: Re: bug#74366: 31.0.50; tree-sitter
Date: Sat, 30 Nov 2024 21:44:55 +0200
forcemerge 73404 74366
thanks

>> >> open ts file, and enable typescript-ts-mode.
>> >> just like
>> >> ```
>> >> function hello() {
>> >>    console.log('hello'),
>> >>     return 'hello';
>> >> }
>> >> ```
>> >> Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
>> >> end of ), not }. It was expected to end of }.
>> >
>> > Here it jumps to after "'hello';".
>> 
>> This should work with the fix from bug#73404.
>
> Should we merge this bug with bug#73404?

Ok, merging.  Sorry for not yet finishing the fix.




Forcibly Merged 73404 74366. Request was from Juri Linkov <juri <at> linkov.net> to control <at> debbugs.gnu.org. (Sat, 30 Nov 2024 19:46:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#74366; Package emacs. (Sun, 22 Dec 2024 19:21:02 GMT) Full text and rfc822 format available.

Message #22 received at 74366 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Yuan Fu <casouri <at> gmail.com>, 74366 <at> debbugs.gnu.org,
 Theodor Thornhill <theo <at> thornhill.no>, me Latpaw <jiangyuezhang <at> outlook.com>
Subject: Re: bug#74366: 31.0.50; tree-sitter
Date: Sun, 22 Dec 2024 21:15:41 +0200
>>> open ts file, and enable typescript-ts-mode.
>>> just like
>>> ```
>>> function hello() {
>>>    console.log('hello'),
>>>     return 'hello';
>>> }
>>> ```
>>> Jump to point before {, and try C-M-f (forward-sexp or treesitter-forward-sexp), it just jump to
>>> end of ), not }. It was expected to end of }.
>>
>> Here it jumps to after "'hello';".
>
> This should work with the fix from bug#73404.

Now 'sexp-list' was added to 'treesit-thing-settings' of
'typescript-ts-mode', so the case above works correctly.




bug marked as fixed in version 31.0.50, send any further explanations to 73404 <at> debbugs.gnu.org and Mickey Petersen <mickey <at> masteringemacs.org> Request was from Juri Linkov <juri <at> linkov.net> to control <at> debbugs.gnu.org. (Fri, 10 Jan 2025 07:36:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 10 Feb 2025 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 189 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.