language-scala
language-scala copied to clipboard
Fixes
Is someone still maintaining this repo ?
commit 2928469
Fix #56
commit 62cbf5f
fix another (not raised) issue: trailing parenthesis were colored with the class name
before fix:
- (new ClassName).doSomething()
after fix:
- (new ClassName).doSomething()
Can class names have underscores, for example Class_Test?
Can class names have underscores, for example
Class_Test?
Yes.
\w+ does not include _, so you'll need to do [\\w_]+ instead.