language-scala icon indicating copy to clipboard operation
language-scala copied to clipboard

Fixes

Open johnsbrew opened this issue 6 years ago • 3 comments

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()

johnsbrew avatar Mar 22 '19 14:03 johnsbrew

Can class names have underscores, for example Class_Test?

winstliu avatar Mar 22 '19 16:03 winstliu

Can class names have underscores, for example Class_Test?

Yes.

johnsbrew avatar Mar 25 '19 09:03 johnsbrew

\w+ does not include _, so you'll need to do [\\w_]+ instead.

winstliu avatar Mar 25 '19 19:03 winstliu