On Thu, May 19, 2016 at 11:20 AM, Christian Brabandt
<[email protected]> wrote:
>
> Closed #644.
Patch to fix this issue is attached. The maintainer Tobias Rapp is
included on this email.
---
Justin M. Keyes
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/syntax/groovy.vim b/runtime/syntax/groovy.vim
index 42fcf4a..ecd0204 100644
--- a/runtime/syntax/groovy.vim
+++ b/runtime/syntax/groovy.vim
@@ -256,7 +256,7 @@ syn region groovyString start=+'+ end=+'+ end=+$+
contains=groovySpeci
syn region groovyString start=+"""+ end=+"""+
contains=groovySpecialChar,groovySpecialError,@Spell,groovyELExpr
syn region groovyString start=+'''+ end=+'''+
contains=groovySpecialChar,groovySpecialError,@Spell
" regex string
-syn region groovyString start='/[^/]' end='/'
contains=groovySpecialChar,groovyRegexChar,groovyELExpr
+syn region groovyString start='/[^/*]' end='/'
contains=groovySpecialChar,groovyRegexChar,groovyELExpr
" syn region groovyELExpr start=+${+ end=+}+ keepend contained
syn match groovyELExpr /\${.\{-}}/ contained
syn match groovyELExpr /\$[a-zA-Z_][a-zA-Z0-9_.]*/ contained