diff options
-rw-r--r-- | plugins/language_v.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/language_v.lua b/plugins/language_v.lua index e6eb8a1..18191b6 100644 --- a/plugins/language_v.lua +++ b/plugins/language_v.lua @@ -11,6 +11,7 @@ syntax.add { { pattern = { "/%*", "%*/" }, type = "comment" }, { pattern = { '"', '"', '\\' }, type = "string" }, { pattern = { "'", "'", '\\' }, type = "string" }, + { pattern = { "`", "`", '\\' }, type = "string" }, { pattern = "0x[%da-fA-F_]+", type = "number" }, { pattern = "0b[01_]+", type = "number" }, { pattern = "00[01234567_]+", type = "number" }, |