Preston Knopp

Results 10 comments of Preston Knopp

Hey, sorry for the delayed response. I just merged the develop branch onto master which works with Godot 3.1. Give master a try again and let me know if you...

The first error > ... but active developer directory ... is a command line tools instance can be fixed by running `xcode-select --reset`, unless you have set xcode path for...

Hi, you are in the right place! @uniqueusername found the issue. It was caused by an incompatible version of the GDScript grammar and tree-sitter that's packaged with atom. Hopefully this...

Hi, I have just updated tree-sitter-gdscript to use the latest tree sitter. Additionally, I ran `tree-sitter init --update` to pull in the new (to tree-sitter-gdscript) default package configuration files. Prebuilds...

Awesome, thank you for catching and fixing this. Can you prefix the latest commit message with `fix(#28): ` and move the tree sitter generate step to its own commit? Thank...

I believe this could work by creating a `$.region` node that contains `$._simple_statements` and `$._compound_statement`. Giving `$._statement` a choice between `$.region` or the aforementioned statement nodes. The fold query for...

I looked more into defining a region rule. It requires integrating with the scanning behavior of indent, dedent, newline, and comment. Unfortunately, not as simple as inserting it into `$._statement`...

@NathanLovato Hey, thanks for reaching out! > I'm just dabbling into tree-sitter so I hope you'll excuse the beginner question. I'd just like to gauge if this is something I...

This has been contributed by NathanLovato!