diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2021-10-01 15:15:08 +0200 |
---|---|---|
committer | Guldoman <giulio.lettieri@gmail.com> | 2021-10-01 15:15:08 +0200 |
commit | bbb150cc31557d5cea7bbaa80573b099382d4a6a (patch) | |
tree | 53ce635a0fde0b02ad804d932d6146db5cd91b14 /plugins/language_make.lua | |
parent | a190df056517c1ba92c4b5f7cd638315f103c60e (diff) | |
download | lite-xl-plugins-bbb150cc31557d5cea7bbaa80573b099382d4a6a.tar.gz lite-xl-plugins-bbb150cc31557d5cea7bbaa80573b099382d4a6a.zip |
`language_make`: Use correct syntax type
Diffstat (limited to 'plugins/language_make.lua')
-rw-r--r-- | plugins/language_make.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_make.lua b/plugins/language_make.lua index 4ce5d00..cedf512 100644 --- a/plugins/language_make.lua +++ b/plugins/language_make.lua @@ -8,7 +8,7 @@ syntax.add { { pattern = "#.*\n", type = "comment" }, { pattern = [[\.]], type = "normal" }, { pattern = "$[@^<%%?+|*]", type = "keyword2" }, - { pattern = "$%(.-%)", type = "variable" }, + { pattern = "$%(.-%)", type = "symbol" }, { pattern = "%f[%w_][%d%.]+%f[^%w_]", type = "number" }, { pattern = "%..*:", type = "keyword2" }, { pattern = ".*:", type = "function" }, |