calendar.vim 561 B

12345678910111213141516171819202122
  1. " Vim filetype plugin file
  2. " Language: calendar(1) input file
  3. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision: 2008-07-09
  5. " 2024-06-02 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. let s:cpo_save = &cpo
  11. set cpo&vim
  12. let b:undo_ftplugin = "setl com< cms< inc< fo<"
  13. setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*\ %s\ */ include&
  14. setlocal formatoptions-=t formatoptions+=croql
  15. let &cpo = s:cpo_save
  16. unlet s:cpo_save