mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
* Update highlights.scm for blade.php files * Update injections.scm to add tree-sitter-comment injection * Fixed the injection issues regarding blade parameters
14 lines
545 B
Scheme
14 lines
545 B
Scheme
((text) @injection.content
|
|
(#set! injection.combined)
|
|
(#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.include-children)
|
|
(#set! injection.language "php-only"))
|
|
|