view runtime/ftplugin/dosini.vim @ 13922:1a30d378b70b

Added tag v8.0.1831 for changeset 3b6c29f8c1a249a7b1501f47be88e7774d1b1b2b
author Christian Brabandt <cb@256bit.org>
date Sun, 13 May 2018 15:30:08 +0200
parents 1218c5353e2b
children 11b656e74444
line wrap: on
line source

" Vim filetype plugin file
" Language:             Configuration File (ini file) for MSDOS/MS Windows
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2008-07-09

if exists("b:did_ftplugin")
  finish
endif
let b:did_ftplugin = 1

let s:cpo_save = &cpo
set cpo&vim

let b:undo_ftplugin = "setl com< cms< fo<"

setlocal comments=:; commentstring=;\ %s formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save