blob: a2e2b2f93e68318cee5a3b62a58b1bf81d871ab2 [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
Riley Bruins0a083062024-06-03 20:40:45 +02005" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Bram Moolenaar26852122016-05-24 20:02:38 +02006
7if exists('b:did_ftplugin')
8 finish
9endif
10let b:did_ftplugin = 1
11
12let s:cpo_save = &cpo
13set cpo-=C
14
15let b:undo_ftplugin = 'setlocal commentstring<'
16
Riley Bruins0a083062024-06-03 20:40:45 +020017setlocal commentstring=//\ %s
Bram Moolenaar26852122016-05-24 20:02:38 +020018
19let &cpo = s:cpo_save
20unlet s:cpo_save