jproperties.vim 292 B

12345678910111213141516
  1. " Vim filetype plugin
  2. " Language: Java properties file
  3. " Maintainer: None
  4. " Last Change: 2019 Dec 01
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal formatoptions-=t
  10. setlocal comments=:#,:!
  11. setlocal commentstring=#\ %s
  12. let b:undo_ftplugin = "setl cms< com< fo<"