Use tree-sitter's indentation?

Tree-sitter can use indents.scm to define indentation. I’m writing a language extension for Cap’n Proto, and an upstream repo already has a nice indentation file written up. Can I use that instead of the <indentation> tag in the syntax’s XML file? Indentation isn’t mentioned in Nova’s tree-sitter reference, but I’m crossing my fingers anyway.

As far as I know, this is not a feature of Tree-sitter itself, but of some editors which use Tree-sitter (e.g. Neovim). There is no standardized format for indentation handling with queries. We have considered adding support for something like this, but it is not currently available.

Ah, got it. Thanks for the info!