hacky fix for nested generic types
--HG-- branch : pmacs2
This commit is contained in:
parent
707554621b
commit
3a32038d5f
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue