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