FILE: C:\Program Files\Git\usr\share\vim\vim91\ftplugin\spec.vim
--
" Plugin to update the %changelog section of RPM spec files
" Filename: spec.vim
" Maintainer: Igor Gnatenko i.gnatenko.brain@gmail.com
" Former Maintainer: Gustavo Niemeyer (until March 2014)
" Last Change: 2015 Jun 01
" Update by Zdenek Dohnal, 2022 May 17
" 2024 Sep 10 by Vim Project: add epoch support for spec changelog, #15537
" 2024 Oct 07 by Vim Project: add comment support, #15817
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let s:cpo_save = &cpo
set cpo&vim
setlocal comments=b:#
setlocal commentstring=#\ %s
let b:undo_ftplugin = "setlocal comments< commentstring<"
if !exists("no_plugin_maps") && !exists("no_spec_maps")
if !hasmapto("SpecChangelog")
map c SpecChangelog
endif
endif
if !hasmapto("call SpecChangelog(\"\")")
noremap