Groovy-Emacs-Modes / groovy-emacs-modes

A groovy major mode, grails minor mode, and a groovy inferior mode.
84 stars 39 forks source link

Variable types are not highlighted #27

Closed Wilfred closed 7 years ago

Wilfred commented 8 years ago

Given the following code:

def foo() {
    String x = 'foo'
    String y = 'foo'
    Thing z = new Thing()
    LinkedList otherLinked = [3, 4, 5]
    int num = 123
    String[] arrStr = ['Ananas', 'Banana', 'Kiwi']
}

groovy_types

Most of the types are not highlighted. It looks like it's just the first type, plus any primitive types.

russel commented 7 years ago

We have changed the Groovy mode from being a CC-Mode derived one to being a standalone one. We are therefore closing all issues relating to the old mode. If you try the new mode and see any problems please post a new issue.