aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_php.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/language_php.lua')
-rw-r--r--plugins/language_php.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/language_php.lua b/plugins/language_php.lua
index be24eb6..8b3371a 100644
--- a/plugins/language_php.lua
+++ b/plugins/language_php.lua
@@ -187,6 +187,18 @@ syntax.add {
},
type = "string"
},
+ { pattern = { '`', '`', '\\' },
+ syntax = {
+ patterns = combine_patterns(inline_variables, {
+ -- prevent matching outside of the parent string
+ { pattern = "[^`]", type = "string" },
+ { pattern = "%p+%f[`]", type = "string" },
+ { pattern = "%p", type = "string" },
+ }),
+ symbols = {}
+ },
+ type = "string"
+ },
{ pattern = "0[bB][%d]+", type = "number" },
{ pattern = "0[xX][%da-fA-F]+", type = "number" },
{ pattern = "-?%d[%d_%.eE]*", type = "number" },