diff options
Diffstat (limited to 'plugins/language_meson.lua')
-rw-r--r-- | plugins/language_meson.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_meson.lua b/plugins/language_meson.lua index ab6be17..c1aa4b1 100644 --- a/plugins/language_meson.lua +++ b/plugins/language_meson.lua @@ -1,3 +1,4 @@ +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { @@ -5,7 +6,6 @@ syntax.add { comment = "#", patterns = { { pattern = { "#", "\n" }, type = "comment" }, - { pattern = { '"', '"', '\\' }, type = "string" }, { pattern = { "'", "'", '\\' }, type = "string" }, { pattern = { "'''", "'''" }, type = "string" }, { pattern = "0x[%da-fA-F]+", type = "number" }, |