João Paulo Silva de Souza

Results 86 comments of João Paulo Silva de Souza

@deekayen I've opened a PR in #21

@ripxorip That is right. I only want to be able to jump to what I can see in the screen from the starting position. I think slicing the current view...

> Is there a particular situation in which this is important to you? It seems pretty specific. Yes. One use-case is for chat platforms which include potentially-sensitive details in their...

I've tried to get around this in https://github.com/mattn/emmet-vim/pull/433 by switching the order in which things are analyzed (i.e. prioritizing the syntax at the cursor first, then falling back to the...

I definitely interpert the star as being part of the whole keyword, just like a "pointer type" sort of thing, but nevermind that. Regarding your replies in the other issue,...

I really dislike not having spaces after keywords which precede a paren. The first argument is: it creates assimetry between language constructs. Declaring an anonymous function can be `function(...)` but...

I think this could relate to https://github.com/tree-sitter/tree-sitter-rust/pull/96. This could be more broadly described as "individual tokens are not designated inside of `token_tree`" since other valid operators, such as `^`, are...

Maybe it's what's being reported in https://github.com/tree-sitter/tree-sitter-rust/issues/98?

This was fixed in https://github.com/tree-sitter/tree-sitter-typescript/issues/140 and the tests are still there https://github.com/tree-sitter/tree-sitter-typescript/blob/54931b39ae7b197e20c7b06680ceaf576b18ec69/common/corpus/declarations.txt#L1002-L1004 Plus the examples work in the playground (https://tree-sitter.github.io/tree-sitter/playground). Are you sure this isn't coming from an outdated version...

> I would think that the time to construct the query would go up with tree-sitter 0.17 This aligns with what I'm seeing. By caching the query, do you mean...