ae-tree-sitter-bundle 0.1.0

A bundle of tree-sitter parsers and queries, ready for editor integration for ae editor
Documentation
1
2
3
4
5
6
7
8
9
// cargo run --example list --features full
fn main() {
    println!("{} languages compiled:", tree_sitter_bundle::count());
    let mut names: Vec<_> = tree_sitter_bundle::languages().map(|l| l.name()).collect();
    names.sort();
    for chunk in names.chunks(8) {
        println!("  {}", chunk.join(", "));
    }
}