hacky fix for nested generic types

--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2010-10-25 10:55:57 -04:00
parent 707554621b
commit 3a32038d5f
1 changed files with 2 additions and 2 deletions

View File

@ -206,9 +206,9 @@ class Scala(Fundamental):
grammar = ScalaGrammar
commentc = '//'
actions = [ScalaStart, ScalaDocBrowse, ScalaDocLookup]
opentokens = ('delimiter', 'sub.start')
opentokens = ('delimiter', 'sub.start', 'sub.sub.start', 'sub.sub.sub.start')
opentags = {'(': ')', '[': ']', '{': '}'}
closetokens = ('delimiter', 'sub.end')
closetokens = ('delimiter', 'sub.end', 'sub.sub.end', 'sub.sub.sub.end')
closetags = {')': '(', ']': '[', '}': '{'}
config = {
'scala.api': 'http://www.scala-lang.org/api/current/allclasses.html',