From 26852128a2b713ef49341a0c18daba928444e7eb Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 24 May 2016 20:02:38 +0200 Subject: Update runtime files. --- runtime/ftplugin/groovy.vim | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 runtime/ftplugin/groovy.vim (limited to 'runtime/ftplugin') diff --git a/runtime/ftplugin/groovy.vim b/runtime/ftplugin/groovy.vim new file mode 100644 index 000000000..cc7d6e35e --- /dev/null +++ b/runtime/ftplugin/groovy.vim @@ -0,0 +1,19 @@ +" Vim filetype plugin file +" Language: groovy +" Maintainer: Justin M. Keyes +" Last Change: 2016 May 22 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +let s:cpo_save = &cpo +set cpo-=C + +let b:undo_ftplugin = 'setlocal commentstring<' + +setlocal commentstring=//%s + +let &cpo = s:cpo_save +unlet s:cpo_save -- cgit v1.2.1