Kaelzs

Results 2 comments of Kaelzs

I checked [-syntaxNode(at:)](https://github.com/simonbs/Runestone/blob/main/Sources/Runestone/TextView/TextView.swift#L782) API, but it might not match my requirement. I'm writing a framework for some in-app debugging, and I created a config file that follows the format of...

I think Runestone can export the `TreeSitterNode` via some protocols like below ``` Swift public protocol TSNodeType { var type: String? { get } var parent: TSNodeType? { get }...