neovim

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

dosini.vim (538B)


      1 " Vim filetype plugin file
      2 " Language:             Configuration File (ini file) for MS-DOS/MS Windows
      3 " Maintainer:           This runtime file is looking for a new maintainer.
      4 " Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
      5 " Latest Revision:      2025 Feb 20
      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< fo<"
     16 
     17 setlocal comments=:;,:# commentstring=;\ %s formatoptions-=t formatoptions+=croql
     18 
     19 let &cpo = s:cpo_save
     20 unlet s:cpo_save