You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Emacs 29 will come with built-in support for tree-sitter, but doesn't seem to ship any grammar binaries, not even those needed by the provided major modes (e.g., typescript-ts-mode).
tree-sitter-langs would be a great way to install those grammars, but it would need two tweaks to work out of the box:
The bin directory would need to be appended to the treesit-extra-load-path list.
The binaries are currently named ${lang}.so / ${lang}.dylib, but Emacs' tree-sitter code expects the original libtree-sitter-${lang}.so / libtree-sitter-${lang}.dylib naming.
Would you be interested in making these tweaks to make tree-sitter-langs work with the built-in Tree Sitter support as well?