diff options
author | mitchell <unknown> | 2019-04-08 23:41:26 -0400 |
---|---|---|
committer | mitchell <unknown> | 2019-04-08 23:41:26 -0400 |
commit | 5f97b5a7ed1872dd93e0bde2a937692fb475a2bd (patch) | |
tree | cbbbd6ff5bb4ab84ce6c2479081e6f49a7dac643 /lexlua | |
parent | 6e45937bdc9e4a79469541e060082862b86b6ef1 (diff) | |
download | scintilla-mirror-5f97b5a7ed1872dd93e0bde2a937692fb475a2bd.tar.gz |
lexlua: Fixed lack of highlighting strings in YAML.
Diffstat (limited to 'lexlua')
-rw-r--r-- | lexlua/yaml.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lexlua/yaml.lua b/lexlua/yaml.lua index 2bcbfa8f6..41d6ee341 100644 --- a/lexlua/yaml.lua +++ b/lexlua/yaml.lua @@ -99,6 +99,7 @@ M._rules = { {'key', key}, {'literal', literal}, {'timestamp', ts}, + {'string', string}, {'number', number}, {'constant', constant}, {'type', type}, |