12 releases

0.2.2 Jun 9, 2025
0.1.0 May 13, 2024
0.0.14 Apr 10, 2024
0.0.13 Mar 28, 2024
0.0.9 Feb 28, 2024

#1355 in Parser implementations

Download history 193/week @ 2025-11-07 111/week @ 2025-11-14 125/week @ 2025-11-21 126/week @ 2025-11-28 162/week @ 2025-12-05 159/week @ 2025-12-12 129/week @ 2025-12-19 74/week @ 2025-12-26 153/week @ 2026-01-02 148/week @ 2026-01-09 121/week @ 2026-01-16 145/week @ 2026-01-23 253/week @ 2026-01-30 185/week @ 2026-02-06 142/week @ 2026-02-13 130/week @ 2026-02-20

751 downloads per month

MIT license

2MB
73K SLoC

C 72K SLoC // 0.0% comments JavaScript 1K SLoC // 0.1% comments Scheme 206 SLoC // 0.1% comments Rust 34 SLoC // 0.3% comments

tree-sitter-navi

Navi language support for tree-sitter.

cargo add tree-sitter-navi

lib.rs:

This crate provides navi language support for the tree-sitter parsing library.

Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_navi::LANGUAGE.into()).expect("Error loading navi grammar");
let tree = parser.parse(code, None).unwrap();

Dependencies

~2.7–4MB
~78K SLoC