Update highlights.scm and injections.scm for blade.php files (#11138)

* Update highlights.scm for blade.php files

* Update injections.scm to add tree-sitter-comment injection

* Fixed the injection issues  regarding blade parameters
This commit is contained in:
Emran Ramezan 2024-07-15 14:29:14 +01:00 committed by GitHub
parent 7f77d95c79
commit 702a96d417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 4 deletions

View File

@ -2,3 +2,7 @@
(directive_start) @tag
(directive_end) @tag
(comment) @comment
[
(bracket_start)
(bracket_end)
] @punctuation.bracket

View File

@ -1,9 +1,14 @@
((text) @injection.content
(#set! injection.combined)
(#set! injection.language php))
(#set! injection.language "php"))
((comment) @injection.content
(#set! injection.language "comment"))
((php_only) @injection.content
(#set! injection.language php-only))
((parameter) @injection.content
(#set! injection.language php-only))
(#set! injection.language "php-only"))
((parameter) @injection.content
(#set! injection.include-children)
(#set! injection.language "php-only"))