diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-11-07 22:04:08 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-11-07 22:04:08 -0500 |
commit | 333bd8cde30ce8125e2ce0454361239893516c56 (patch) | |
tree | e009c35bfaa7d6924689ab3cac27ff58391d7a73 /runtime/syntax/groovy.vim | |
parent | 7521fb56558a146f3b116bcf195cf6bd1984d6c2 (diff) | |
parent | 975a610233e05772d9c835caeede4b7ae2e1af7d (diff) | |
download | rneovim-333bd8cde30ce8125e2ce0454361239893516c56.tar.gz rneovim-333bd8cde30ce8125e2ce0454361239893516c56.tar.bz2 rneovim-333bd8cde30ce8125e2ce0454361239893516c56.zip |
Merge pull request #3628 from mhinz/vim-patch-f2571c6
vim-patch:f2571c6
Diffstat (limited to 'runtime/syntax/groovy.vim')
-rw-r--r-- | runtime/syntax/groovy.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/syntax/groovy.vim b/runtime/syntax/groovy.vim index 2056bd16d0..c745960bd5 100644 --- a/runtime/syntax/groovy.vim +++ b/runtime/syntax/groovy.vim @@ -157,7 +157,7 @@ syn match groovyOperator "\.\." syn match groovyOperator "<\{2,3}" syn match groovyOperator ">\{2,3}" syn match groovyOperator "->" -syn match groovyExternal '^#!.*[/\\]groovy\>' +syn match groovyLineComment '^\%1l#!.*' " Shebang line syn match groovyExceptions "\<Exception\>\|\<[A-Z]\{1,}[a-zA-Z0-9]*Exception\>" " Groovy JDK stuff |