neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

calendar.vim (561B)


      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 
      7 if exists("b:did_ftplugin")
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 let s:cpo_save = &cpo
     13 set cpo&vim
     14 
     15 let b:undo_ftplugin = "setl com< cms< inc< fo<"
     16 
     17 setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*\ %s\ */ include&
     18 setlocal formatoptions-=t formatoptions+=croql
     19 
     20 let &cpo = s:cpo_save
     21 unlet s:cpo_save