diff options
| author | Caleb White <cdwhite3@pm.me> | 2024-08-18 05:30:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-18 12:30:04 +0200 |
| commit | ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631 (patch) | |
| tree | c7ba6a551dc8fa364104378872d2cad5ff0b6d9b /queries/php_only/highlights.scm | |
| parent | bot(lockfile): update go, html, json, python, rust, swift, vhs (diff) | |
| download | nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar.gz nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar.bz2 nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar.lz nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar.xz nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.tar.zst nvim-treesitter-ec8776ed9ef56ffe7a61e67b64d5d6b6aba2c631.zip | |
feat(php): php 8.4 support (#6741)
* chore(php): update maintainers
* feat(php): update php rules, highlight imported functions/consts
* feat(php): indent inside property hooks
* chore: update php and php_only revision
Diffstat (limited to 'queries/php_only/highlights.scm')
| -rw-r--r-- | queries/php_only/highlights.scm | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/queries/php_only/highlights.scm b/queries/php_only/highlights.scm index 2b9e4ea95..790bd088f 100644 --- a/queries/php_only/highlights.scm +++ b/queries/php_only/highlights.scm @@ -221,10 +221,26 @@ (name) @type (qualified_name (name) @type) + alias: (name) @type.definition ]) -(namespace_aliasing_clause - (name) @type.definition) +(namespace_use_clause + type: "function" + [ + (name) @function + (qualified_name + (name) @function) + alias: (name) @function + ]) + +(namespace_use_clause + type: "const" + [ + (name) @constant + (qualified_name + (name) @constant) + alias: (name) @constant + ]) (class_interface_clause [ @@ -369,9 +385,8 @@ name: (namespace_name (name) @module)) -(namespace_name_as_prefix - (namespace_name - (name) @module)) +(namespace_name + (name) @module) ; Attributes (attribute_list) @attribute |
