shannonshell 0.1.1

An AI-first shell with seamless access to bash, nushell, and any other shell
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Vendored tree-sitter grammar for nushell.
//! Source: https://github.com/nushell/tree-sitter-nu (MIT license)

use tree_sitter_language::LanguageFn;

extern "C" {
    fn tree_sitter_nu() -> *const ();
}

/// The tree-sitter [`LanguageFn`] for the nushell grammar.
pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_nu) };