view runtime/ftplugin/dosini.vim @ 19490:ac68906da0ae

Added tag v8.2.0302 for changeset 31ac050a29a7dec656bfce3f6529502a84f626d8
author Bram Moolenaar <Bram@vim.org>
date Sat, 22 Feb 2020 23:00:05 +0100
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