aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAdham Zahran <lordadamson@gmail.com>2020-06-24 19:22:50 +0200
committerAdham Zahran <lordadamson@gmail.com>2020-06-24 19:22:50 +0200
commitdff4483c481a8f5ae539afb2b427c9dfe89f4a55 (patch)
treee04116b3536cc0482b6c13ef1165113e05d43618 /plugins
parent2446f3c89b54c4554bd54c5f3a1e6d4a8471cac2 (diff)
downloadlite-xl-plugins-dff4483c481a8f5ae539afb2b427c9dfe89f4a55.tar.gz
lite-xl-plugins-dff4483c481a8f5ae539afb2b427c9dfe89f4a55.zip
CMake syntax highlighting
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_cmake.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/language_cmake.lua b/plugins/language_cmake.lua
new file mode 100644
index 0000000..78354e1
--- /dev/null
+++ b/plugins/language_cmake.lua
@@ -0,0 +1,15 @@
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = { "%.cmake$", "CMakeLists.txt$" },
+ comment = "//",
+ patterns = {
+ { pattern = { "#", "[^\\]\n" }, type = "comment" },
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = { "'", "'", '\\' }, type = "string" },
+ { pattern = "[%a_][%w_]*%f[(]", type = "function" },
+ { pattern = "[%a_][%w_]*", type = "normal" },
+ { pattern = "%${[%a_][%w_]*%}", type = "operator" },
+ },
+ symbols = {},
+}