tree-sitter/cli/src/lib.rs
Max Brunsfeld 1bad6dc41e Add ~/.tree-sitter/config.json file, init-config command
Right now this is just used for two things:
* Specifying folders for locarting parsers to use with `tree-sitter 
parse` and `tree-sitter highlight`
* Specifying colors to use for `tree-sitter-highlight`
2019-02-25 12:33:24 -08:00

13 lines
188 B
Rust

pub mod config;
pub mod error;
pub mod generate;
pub mod highlight;
pub mod loader;
pub mod logger;
pub mod parse;
pub mod properties;
pub mod test;
pub mod util;
#[cfg(test)]
mod tests;