aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_sass.lua
blob: f4409271f4c13b5f88659b7b016a5dd0a9b37785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
-- mod-version:3
local syntax = require "core.syntax"

syntax.add {
  name = "Sass",
  files = { "%.sass$" ,"%.scss$"},
  comment = "//",
  patterns = {
    { pattern = "/[/%*].-\n",             type = "comment"  },
    { pattern = { '"', '"', '\\' },       type = "string"   },
    { pattern = { "'", "'", '\\' },       type = "string"   },
    { pattern = "$%w+",                   type = "keyword"  },
    { pattern = "@%w+",                   type = "literal"  },
    { pattern = "[#,]%w+",                type = "function" },
    { pattern = "&",                      type = "keyword2" },
    { pattern = "[:%/%*%-]",              type = "operator" },
    { pattern = "[%a][%w-]*%s*%f[:]",     type = "keyword2" },
    { pattern = "-?%d+[%d%.]*p[xt]",      type = "number"   },
    { pattern = "-?%d+[%d%.]*deg",        type = "number"   },
    { pattern = "-?%d+[%d%.]*[s%%]",      type = "number"   },
    { pattern = "-?%d+[%d%.]*",           type = "number"   },
    { pattern = "[%a_][%w_]*",            type = "symbol"   },
  },
  symbols = {
    ["transparent"] = "literal",
    ["none"]        = "literal",
    ["absolute"]    = "literal",
    ["relative"]    = "literal",
    ["solid"]       = "literal",
    ["flex"]        = "literal",
    ["flex-start"]  = "literal",
    ["flex-end"]    = "literal",
    ["row"]         = "literal",
    ["center"]      = "literal",
    ["column"]      = "literal",
    ["pointer"]     = "literal",
    ["ease"]        = "literal",
    ["white"]      = "function",
    ["black"]      = "function",
    ["gray"]       = "function",
    ["blue"]       = "function",
    ["red"]        = "function",
    ["purple"]     = "function",
    ["green"]      = "function",
    ["yellow"]     = "function"
  }
}