vim-patch:2685212

Update runtime files.

26852128a2
This commit is contained in:
Shougo Matsushita
2016-10-15 12:12:48 +09:00
parent 40f853398e
commit f3efb724af
4 changed files with 45 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
" Vim filetype plugin file
" Language: groovy
" Maintainer: Justin M. Keyes <justinkz@gmail.com>
" 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