CodeEditApp / CodeEditSourceEditor

A code editor view written in Swift powered by tree-sitter.
https://codeeditapp.github.io/CodeEditSourceEditor/documentation/codeeditsourceeditor
MIT License
514 stars 80 forks source link

✨ Tree Sitter for Bracket Highlight #214

Open thecoolwinter opened 10 months ago

thecoolwinter commented 10 months ago

Description

Tree sitter can give us faster, more accurate bracket highlight info. By finding the beginning or end of a syntax node, we can jump to a spot we can reasonably assume is near a bracket and search from there. This will also skip brackets that are in comments in supported languages.

Alternatives Considered

No response

Additional Context

Helix has similar support: https://github.com/helix-editor/helix/issues/3584

Screenshots

No response