Merge pull request #85 from tapir/master

Fix Lua multiline comment and string
This commit is contained in:
Anthony Scopatz 2016-02-16 14:42:22 -05:00
commit ea84e69ec7
1 changed files with 6 additions and 7 deletions

View File

@ -52,21 +52,20 @@ color red "\<([0-9]+)\>"
# Symbols # Symbols
color brightmagenta "(\(|\)|\[|\]|\{|\})" color brightmagenta "(\(|\)|\[|\]|\{|\})"
# Strings
#color green "\"(\\.|[^\\\"])*\"|'(\\.|[^\\'])*'"
# Strings # Strings
color red "\"(\\.|[^\\\"])*\"|'(\\.|[^\\'])*'" color red "\"(\\.|[^\\\"])*\"|'(\\.|[^\\'])*'"
# Multiline strings
color red start="\s*\[\[" end="\]\]"
# Escapes # Escapes
color red "\\[0-7][0-7][0-7]|\\x[0-9a-fA-F][0-9a-fA-F]|\\[abefnrs]|(\\c|\\C-|\\M-|\\M-\\C-)." color red "\\[0-7][0-7][0-7]|\\x[0-9a-fA-F][0-9a-fA-F]|\\[abefnrs]|(\\c|\\C-|\\M-|\\M-\\C-)."
# Shebang # Shebang
color brightcyan "^#!.*" color brightcyan "^#!.*"
# Simple comments # Simple comments
color green "\-\-.*$" color green "\-\-.*$"
# Multiline comments # Multiline comments
color green start="\-\-\[" end="]" color green start="\s*\-\-\s*\[\[" end="\]\]"