blob: cc7d6e35eb10952a6b7e1712c6674ee3794bf1bb [file] [log] [blame]
Bram Moolenaar26852122016-05-24 20:02:38 +02001" Vim filetype plugin file
2" Language: groovy
3" Maintainer: Justin M. Keyes <justinkz@gmail.com>
4" Last Change: 2016 May 22
5
6if exists('b:did_ftplugin')
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo-=C
13
14let b:undo_ftplugin = 'setlocal commentstring<'
15
16setlocal commentstring=//%s
17
18let &cpo = s:cpo_save
19unlet s:cpo_save