wenkokke / tree-sitter-talon

Tree Sitter parser for Talon files.
MIT License
8 stars 5 forks source link

Don't include space in right-hand side of context #22

Closed pokey closed 1 year ago

pokey commented 1 year ago

I think something to do with this line:

https://github.com/wenkokke/tree-sitter-talon/blob/af5d7988181edb6bc257939f6eb11df6630b95ff/grammar.js#L65

Basically the right field of match includes the space after the : in eg tags: user.foo

wenkokke commented 1 year ago

This just requires redefining implicit_string from /.*/ to some regular expressions that excludes leading and trailing spaces.

Maybe /(\S|\S.+\S)/?

wenkokke commented 1 year ago

Fix the issue in 7b793a7.