--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2015-09-29 08:48:35 -04:00
parent baacddfa88
commit 3362f81c96
1 changed files with 17 additions and 11 deletions

View File

@ -9,25 +9,28 @@ from mode.pipe import Pipe
from method.shell import Interact
chr1 = '[a-zA-Z_]'
chr2 = '[a-zA-Z_0-9]'
word = chr1 + chr2 + '*'
chr2 = '[a-zA-Z_0-9_]'
word = '[a-zA-Z_]' + chr2 + '*'
capword = '[a-zA-Z]' + chr2 + '*'
class LuaGrammar(Grammar):
rules = [
RegionRule('comment', r'--\[(?P<level>=*)\[', Grammar, r'\]%(level)s\]'),
#RegionRule('comment', r'--\[\[', Grammar, r'\]\]'),
RegionRule('comment', r'--\[\[', Grammar, r'\]\]'),
PatternRule('comment', '--.*$'),
PatternRule('spaces', ' +'),
PatternRule('eol', r'\n'),
RegionRule('lua.string', "'", StringGrammar1, "'"),
RegionRule('lua.string', '"', StringGrammar2, '"'),
RegionRule('lua.string', '\[\[', Grammar, '\]\]'),
RegionRule('lua.string', "'", StringGrammar1, "'"), #fixme
RegionRule('lua.string', '"', StringGrammar2, '"'), #fixme
PatternMatchRule('x', '(function)( +)(' + word + ')',
'lua.keyword', 'spaces', 'lua.function'),
PatternRule('lua.keyword', '(?:while|until|true|then|return|repeat|or|not|nil|local|in|if|function|for|false|end|elseif|else|done|do|break|and)(?!' + chr2 + ')'),
PatternMatchRule('', '(function)( +)([A-Za-z_][A-Za-z0-9_]*)(:)([A-Za-z_][A-Za-z0-9_]*)', 'lua.keyword', 'spaces', 'lua.class', 'delimiter', 'lua.function'),
PatternMatchRule('', '(function)( +)([A-Za-z_][A-Za-z0-9_]*)', 'lua.keyword', 'spaces', 'lua.function'),
PatternRule('lua.keyword', '(?:while|until|then|return|repeat|or|not|local|in|if|function|for|end|elseif|else|done|do|break|and)(?!' + chr2 + ')'),
PatternRule('lua.reserved', '(?:true|false|nil|self)(?![a-zA-Z0-9_])'),
PatternRule('lua.internal', '_[A-Z]+'),
PatternRule('lua.class', '[A-Z][a-zA-Z0-9_]*'),
PatternRule('lua.identifier', word),
PatternRule('delimiter', r'(?:[=(){}\[\];:,.])'),
@ -75,7 +78,10 @@ class Lua(Fundamental):
opentags = {'(': ')', '[': ']', '{': '}'}
closetokens = ('delimiter',)
closetags = {')': '(', ']': '[', '}': '{'}
colors = {}
colors = {
'lua.class': ('blue225', 'default'),
'lua.reserved': ('magenta505', 'default'),
}
actions = [LuaCheckSyntax, LuaStart, LuaLoadFile]
_bindings = {
'close-paren': (')',),