Will Lillis

Results 113 comments of Will Lillis

Another update: It looks the odd behavior I was seeing is the result of a bug in the tree-sitter rust bindings. See https://github.com/tree-sitter/tree-sitter/issues/2847 Edit: The bug is there but there's...

This sounds like a great idea! I'll look into what needs to be done for this to be implemented soon :)

Update: https://github.com/microsoft/language-server-protocol/pull/1872 https://github.com/microsoft/language-server-protocol/issues/343#issuecomment-1881598900

This would be a great addition! We'll have to write some scripts to grab the information off of the site you linked and convert it into a .xml file the...

This seems to have the same failure conditions (unchecked access to a hashmap for a nonterminal symbol) as #768, here: https://github.com/tree-sitter/tree-sitter/blob/01bf431261d5238fcf74b1e5e5612f1d259d013f/cli/src/generate/render.rs#L1148-L1158 I provided some more information in [my comment](https://github.com/tree-sitter/tree-sitter/issues/768#issuecomment-2061715105) in...

I spent some more time on this and found some more interesting behavior. Currently, if I set a cursor's range to the entire document, some queries will repeatedly match a...

> Does this only occur in the Rust bindings? Could you also try Node for one? I tried out the example from #2847 as follows: ```js const Parser = require("tree-sitter");...

@ObserverOfTime Spent some time looking through the other issues and it looks like this is a duplicate of #608. Should I go ahead and close this?

Testing with current master branch [01bf431](https://github.com/tree-sitter/tree-sitter/commit/01bf431261d5238fcf74b1e5e5612f1d259d013f) and can confirm it's still crashing. I replicated using ahelwer's example: ```js module.exports = grammar({ name: 'test', extras: $ => [ /\s|\r?\n/, $.comment, $.block_comment...

> Yes, I was very [fond](https://github.com/zigtools/zls/issues/1301) of this feature and would like to see it come back or at least as an option. > > The original motivation as stated...