groovy.vim 343 B

1234567891011121314151617181920
  1. " Vim filetype plugin file
  2. " Language: groovy
  3. " Maintainer: Justin M. Keyes <justinkz@gmail.com>
  4. " Last Change: 2016 May 22
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. let s:cpo_save = &cpo
  10. set cpo-=C
  11. let b:undo_ftplugin = 'setlocal commentstring<'
  12. setlocal commentstring=//%s
  13. let &cpo = s:cpo_save
  14. unlet s:cpo_save