when I do the single slash (/) when typing some arithmetic expression (like val1 / val2), my vim treats it as a comment for multiple lines (/*). The result looks like:

I now I can escape it by typing ;/ at the end of that line (which closes the comment), but it is still annoying and I'd like for my vim to behave properly :).
I've tried using another vim syntax highlighting package for groovy, I've tried :filetype plugin off in my .vimrc, I've tried purging vim with my settings and reinstalling it and the problem is still there.
:filetype plugin indent onin your vimrc. Does this happen withvim -u NONE? - FDinoff4339:22fa3049e934with changes togroovyELExpr, so vim now thinks the/starts a regexp. - cfrick