aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorLiqube <git@liqube.com>2020-05-18 18:17:48 +0200
committerLiqube <git@liqube.com>2020-05-18 18:17:48 +0200
commitd18469455b3969cb74a41b541745e6184cc61f15 (patch)
tree0e5f14295d7f5d87a21b92002e3eb3706a26341c /plugins
parent8b1cff83b29b7448985ea75957b1320c20635762 (diff)
downloadlite-xl-plugins-d18469455b3969cb74a41b541745e6184cc61f15.tar.gz
lite-xl-plugins-d18469455b3969cb74a41b541745e6184cc61f15.zip
whoops
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_csv.lua13
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 = { },
-}