#noir #parser #incremental

tree-sitter-noir

noir grammar for the tree-sitter parsing library

1 unstable release

0.0.1 Aug 27, 2023

#7 in #noir

Custom license

1MB
30K SLoC

C 29K SLoC JavaScript 496 SLoC // 0.0% comments Scheme 57 SLoC // 0.1% comments Rust 34 SLoC // 0.4% comments

Tree-sitter Noir

test npm

Noir grammar and parser for tree-sitter

Emacs

To use with Emacs; use the following package here.

NeoVim

  1. Make sure that you have the latest version of Neovim and have also installed the neovim tree-sitter plugin.

  2. Add the following lines to your init.vim file:


lua <<EOF
local parser_config = require "nvim-treesitter.parsers".get_parser_configs()

parser_config.noir = {
    install_info = {
        url = "https://github.com/hhamud/tree-sitter-noir", -- the url for this tree-sitter grammar
        files = {"src/parser.c", "src/scanner.cc"},
    },
    filetype = "noir", -- if filetype does not agrees with parser name you can define this field
}

require'nvim-treesitter.configs'.setup {
  ensure_installed = "noir", -- The custom parser
  highlight = {
    enable = true,              -- false will disable the whole extension
  },
}
EOF

Other

To install the grammar from NPM

npm i tree-sitter-noir

References

Contributing

Contributions to tree-sitter-noir are welcome. If you find any issues or have suggestions for improvement, please create a new issue or submit a pull request on the GitHub repository.

Dependencies

~2.7–4MB
~71K SLoC