diff options
-rw-r--r-- | plugins/language_sh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_sh.lua b/plugins/language_sh.lua index 9159f3b..a44b212 100644 --- a/plugins/language_sh.lua +++ b/plugins/language_sh.lua @@ -9,6 +9,7 @@ syntax.add { -- $# is a bash special variable and the '#' shouldn't be interpreted -- as a comment. { pattern = "$[%a_@*#][%w_]*", type = "keyword2" }, + { pattern = "${.-}", type = "keyword2" }, { pattern = "#.*\n", type = "comment" }, { pattern = [[\.]], type = "normal" }, { pattern = { '"', '"', '\\' }, type = "string" }, @@ -17,7 +18,6 @@ syntax.add { { pattern = "%f[%w_][%d%.]+%f[^%w_]", type = "number" }, { pattern = "[!<>|&%[%]=*]", type = "operator" }, { pattern = "%f[%S]%-[%w%-_]+", type = "function" }, - { pattern = "${.-}", type = "keyword2" }, { pattern = "[%a_][%w_]*", type = "symbol" }, }, symbols = { |