Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rurumimic/tree-sitter
https://github.com/rurumimic/tree-sitter
neovim tree-sitter vscode
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rurumimic/tree-sitter
- Owner: rurumimic
- License: mit
- Created: 2024-06-22T03:38:28.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-22T14:42:58.000Z (7 months ago)
- Last Synced: 2024-11-01T14:20:57.215Z (3 months ago)
- Topics: neovim, tree-sitter, vscode
- Language: TypeScript
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tree-sitter
- [docs](https://tree-sitter.github.io/tree-sitter/)
- [using parsers](https://tree-sitter.github.io/tree-sitter/using-parsers)
- [creating parsers](https://tree-sitter.github.io/tree-sitter/creating-parsers)
- [syntax highlighting](https://tree-sitter.github.io/tree-sitter/syntax-highlighting)
- github: [tree-sitter](https://github.com/tree-sitter/tree-sitter)## tree-sitter-cli
- crates: [tree-sitter-cli](https://crates.io/crates/tree-sitter-cli)
Install CLI tool:
```bash
cargo install tree-sitter-cli
```### Project Setup
```bash
mkdir tree-sitter-${YOUR_LANGUAGE_NAME}
cd tree-sitter-${YOUR_LANGUAGE_NAME}npm init
vi grammar.js
tree-sitter generate
```