Really love this project. I would like to see support for the Apache Groovy language. If anyone else is interested, I may be able to add this, pending availability. There's a few things to look out for ex. the triple-quote multi-line string
def someString = """
This is a string
spanning multiple lines
"""
Also, highlighting for String interpolation
def year = LocalDate.now().getYear()
def someString = "The year was ${year}"
Really love this project. I would like to see support for the Apache Groovy language. If anyone else is interested, I may be able to add this, pending availability. There's a few things to look out for ex. the triple-quote multi-line string
Also, highlighting for String interpolation