ondir.vim 378 B

12345678910111213141516171819
  1. " Vim filetype plugin file
  2. " Language: ondir <https://github.com/alecthomas/ondir>
  3. " Maintainer: Jon Parise <jon@indelible.org>
  4. if exists('b:did_ftplugin')
  5. finish
  6. endif
  7. let s:cpo_save = &cpoptions
  8. setlocal comments=:# commentstring=#\ %s
  9. let b:undo_ftplugin = 'setl comments< commentstring<'
  10. let &cpoptions = s:cpo_save
  11. unlet s:cpo_save
  12. " vim: et ts=4 sw=2 sts=2: