Add JSDoc syntax highlighting support (#7826)

![SCR-20240215-mokn](https://github.com/zed-industries/zed/assets/67913738/17750eb5-bf48-4e23-adc5-0f7a5e15a41b)

Closes #4926

Release Notes:

- Added support for [JSDoc](https://jsdoc.app) syntax highlighting
([#7224](https://github.com/zed-industries/zed/issues/7224)).
This commit is contained in:
Robin Pfäffle 2024-03-15 22:17:06 +01:00 committed by GitHub
parent 24e7cfb0d5
commit eecbafb94e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 37 additions and 0 deletions

10
Cargo.lock generated
View file

@ -5315,6 +5315,7 @@ dependencies = [
"tree-sitter-hcl",
"tree-sitter-heex",
"tree-sitter-html",
"tree-sitter-jsdoc",
"tree-sitter-json 0.20.0",
"tree-sitter-lua",
"tree-sitter-markdown",
@ -10534,6 +10535,15 @@ dependencies = [
"tree-sitter",
]
[[package]]
name = "tree-sitter-jsdoc"
version = "0.20.0"
source = "git+https://github.com/tree-sitter/tree-sitter-jsdoc#6a6cf9e7341af32d8e2b2e24a37fbfebefc3dc55"
dependencies = [
"cc",
"tree-sitter",
]
[[package]]
name = "tree-sitter-json"
version = "0.19.0"