From 2eae5db069dc171f74cd863487655f6a88e5384d Mon Sep 17 00:00:00 2001 From: Mehmet Samet Duman Date: Fri, 3 Apr 2026 22:21:25 +0300 Subject: NOISSUE rebrand vim to MNV's not Vim Signed-off-by: Mehmet Samet Duman --- uvim/runtime/ftplugin/spec.vim | 225 ----------------------------------------- 1 file changed, 225 deletions(-) delete mode 100644 uvim/runtime/ftplugin/spec.vim (limited to 'uvim/runtime/ftplugin/spec.vim') diff --git a/uvim/runtime/ftplugin/spec.vim b/uvim/runtime/ftplugin/spec.vim deleted file mode 100644 index dcf2908911..0000000000 --- a/uvim/runtime/ftplugin/spec.vim +++ /dev/null @@ -1,225 +0,0 @@ -" 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