mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Add blade support (#9513)
* Add php-only language config and queries php-only is required enabling php injections like in blade templates * Add blade templates support
This commit is contained in:
parent
eead105f94
commit
d99b6177c2
8 changed files with 219 additions and 0 deletions
|
@ -940,6 +940,29 @@ indent = { tab-width = 4, unit = " " }
|
|||
name = "php"
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-php", rev = "f860e598194f4a71747f91789bf536b393ad4a56" }
|
||||
|
||||
[[language]]
|
||||
name = "php-only"
|
||||
scope = "source.php-only"
|
||||
injection-regex = "php-only"
|
||||
file-types = []
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
roots = ["composer.json", "index.php"]
|
||||
|
||||
[[grammar]]
|
||||
name = "php-only"
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-php", rev = "cf1f4a0f1c01c705c1d6cf992b104028d5df0b53", subpath = "php_only" }
|
||||
|
||||
[[language]]
|
||||
name = "blade"
|
||||
scope = "source.blade.php"
|
||||
file-types = [{ glob = "*.blade.php" }, "blade"]
|
||||
injection-regex = "blade"
|
||||
roots = ["composer.json", "index.php"]
|
||||
|
||||
[[grammar]]
|
||||
name = "blade"
|
||||
source = { git = "https://github.com/EmranMR/tree-sitter-blade", rev = "4c66efe1e05c639c555ee70092021b8223d2f440" }
|
||||
|
||||
[[language]]
|
||||
name = "twig"
|
||||
scope = "source.twig"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue