diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/language_csv.lua | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/language_csv.lua b/plugins/language_csv.lua deleted file mode 100644 index 1ffb832..0000000 --- a/plugins/language_csv.lua +++ /dev/null @@ -1,13 +0,0 @@ -local syntax = require "core.syntax" - --- csv basic syntax for lite <liqube> -syntax.add { - files = { "%.csv$" }, - patterns = { - { pattern = "-?%.?%d+f?", type = "number" }, -- numbers - { pattern = "[,;|]", type = "operator" }, -- operators - { pattern = { '"', '"', '\\' }, type = "string" }, -- strings - { pattern = { "'", "'", '\\' }, type = "string" }, -- strings - }, - symbols = { }, -} |