summaryrefslogtreecommitdiff
path: root/queries/php/highlights.scm
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2021-11-18 09:51:03 +0000
committerStephan Seitz <stephan.seitz@fau.de>2021-11-23 10:02:06 +0100
commit011ac894ec5b9e36563d8629fb7734f43ddb27a8 (patch)
treede0b252b7705bfa4304c08cd389fed0814ae6f1c /queries/php/highlights.scm
parent89fbb9b39e9ff4049c797397721d44facbd246df (diff)
Prefer lua-match over match
as string.find is much quicker than vim.regex:match*
Diffstat (limited to 'queries/php/highlights.scm')
-rw-r--r--queries/php/highlights.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/queries/php/highlights.scm b/queries/php/highlights.scm
index d9d27051..8a66a11d 100644
--- a/queries/php/highlights.scm
+++ b/queries/php/highlights.scm
@@ -56,7 +56,7 @@
(#vim-match? @constant "^_?[A-Z][A-Z\d_]+$"))
((name) @constructor
- (#match? @constructor "^[A-Z]"))
+ (#lua-match? @constructor "^[A-Z]"))
((name) @variable.builtin
(#eq? @variable.builtin "this"))