aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_cmake.lua
blob: 19f1aa5005b84c82f12bcf013cd3ec96341cadb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- mod-version:3
local syntax = require "core.syntax"

syntax.add {
  name = "CMake",
  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 = {},
}