all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#75164: treesit-font-lock-fontify-region is easy to lost color on parse error. suggest to remain fontify on parse error.
@ 2024-12-28 16:25 Eval Exec
  2024-12-30  0:28 ` Charalampos Mitrodimas
  0 siblings, 1 reply; 3+ messages in thread
From: Eval Exec @ 2024-12-28 16:25 UTC (permalink / raw)
  To: 75164

Hello.
When I enable rust-ts-mode on a rust file, I found treesitter is easy
to make emacs buffer to lost color.
For example, on the following rust code:
```rust

struct Dog {
    name: String,
    age: u8,
}


struct ManyStruct {
    a: u8,
}

fn many_code(){
    fn fib(n: u32) -> u32 {
        if n == 0 {
            return 0;
        }
        if n == 1 {
            return 1;
        }
        fib(n - 1) + fib(n - 2)
    }
}

fn main() {
    // change below `//` to `/` to see the difference
    // {
}
```

the rust code is right, and the emacs buffer color is right on every
struct/functions.
But, if I change `// {` to `/ {`, then the rust code is wrong, this
buffer will lost all colors.
You can see the change on bellow images:

https://imgur.com/a/4Tnv0GJ

I suggest emacs can remain colors even if the code is wrong.

My emacs version info: GNU Emacs 31.0.50





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#75164: treesit-font-lock-fontify-region is easy to lost color on parse error. suggest to remain fontify on parse error.
  2024-12-28 16:25 bug#75164: treesit-font-lock-fontify-region is easy to lost color on parse error. suggest to remain fontify on parse error Eval Exec
@ 2024-12-30  0:28 ` Charalampos Mitrodimas
  2024-12-31 21:02   ` Yuan Fu
  0 siblings, 1 reply; 3+ messages in thread
From: Charalampos Mitrodimas @ 2024-12-30  0:28 UTC (permalink / raw)
  To: Eval Exec; +Cc: 75164

Hi,

Eval Exec <execvy@gmail.com> writes:

> Hello.
> When I enable rust-ts-mode on a rust file, I found treesitter is easy
> to make emacs buffer to lost color.
> For example, on the following rust code:
> ```rust
>
> struct Dog {
>     name: String,
>     age: u8,
> }
>
>
> struct ManyStruct {
>     a: u8,
> }
>
> fn many_code(){
>     fn fib(n: u32) -> u32 {
>         if n == 0 {
>             return 0;
>         }
>         if n == 1 {
>             return 1;
>         }
>         fib(n - 1) + fib(n - 2)
>     }
> }
>
> fn main() {
>     // change below `//` to `/` to see the difference
>     // {
> }
> ```
>
> the rust code is right, and the emacs buffer color is right on every
> struct/functions.
> But, if I change `// {` to `/ {`, then the rust code is wrong, this
> buffer will lost all colors.

Thanks for reporting this.

I attempted to reproduce this, using your example, when I change `// {`
to `/{` only "main" from `fn main()` loses color. The rest of the syntax
highlighting remains intact in my setup.


                            C. Mitrodimas

> You can see the change on bellow images:
>
> https://imgur.com/a/4Tnv0GJ
>
> I suggest emacs can remain colors even if the code is wrong.
>
> My emacs version info: GNU Emacs 31.0.50





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#75164: treesit-font-lock-fontify-region is easy to lost color on parse error. suggest to remain fontify on parse error.
  2024-12-30  0:28 ` Charalampos Mitrodimas
@ 2024-12-31 21:02   ` Yuan Fu
  0 siblings, 0 replies; 3+ messages in thread
From: Yuan Fu @ 2024-12-31 21:02 UTC (permalink / raw)
  To: Charalampos Mitrodimas; +Cc: Eval Exec, 75164



> On Dec 29, 2024, at 4:28 PM, Charalampos Mitrodimas <charmitro@posteo.net> wrote:
> 
> Hi,
> 
> Eval Exec <execvy@gmail.com> writes:
> 
>> Hello.
>> When I enable rust-ts-mode on a rust file, I found treesitter is easy
>> to make emacs buffer to lost color.
>> For example, on the following rust code:
>> ```rust
>> 
>> struct Dog {
>>    name: String,
>>    age: u8,
>> }
>> 
>> 
>> struct ManyStruct {
>>    a: u8,
>> }
>> 
>> fn many_code(){
>>    fn fib(n: u32) -> u32 {
>>        if n == 0 {
>>            return 0;
>>        }
>>        if n == 1 {
>>            return 1;
>>        }
>>        fib(n - 1) + fib(n - 2)
>>    }
>> }
>> 
>> fn main() {
>>    // change below `//` to `/` to see the difference
>>    // {
>> }
>> ```
>> 
>> the rust code is right, and the emacs buffer color is right on every
>> struct/functions.
>> But, if I change `// {` to `/ {`, then the rust code is wrong, this
>> buffer will lost all colors.
> 
> Thanks for reporting this.
> 
> I attempted to reproduce this, using your example, when I change `// {`
> to `/{` only "main" from `fn main()` loses color. The rest of the syntax
> highlighting remains intact in my setup.

It’s indeed strange to see the whole buffer lost fontification. I don’t see it either.

Yuan




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-31 21:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-28 16:25 bug#75164: treesit-font-lock-fontify-region is easy to lost color on parse error. suggest to remain fontify on parse error Eval Exec
2024-12-30  0:28 ` Charalampos Mitrodimas
2024-12-31 21:02   ` Yuan Fu

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.