lkundrak / rpms / vim

Forked from rpms/vim 4 years ago
Clone
cvsdist 1401a3e
--- vim62/runtime/ftplugin/spec.vim.rh1	2004-01-12 14:16:15.000000000 +0100
cvsdist 1401a3e
+++ vim62/runtime/ftplugin/spec.vim	2004-01-12 14:18:06.000000000 +0100
cvsdist 1401a3e
@@ -12,7 +12,7 @@
cvsdist 1401a3e
 " Add mappings, unless user doesn't want
cvsdist 1401a3e
 if !exists("no_plugin_maps") && !exists("no_spec_maps")
cvsdist 1401a3e
 	if !hasmapto("<Plug>AddChangelogBlock")
cvsdist 1401a3e
-		map <buffer> <LocalLeader>ch <Plug>AddChangelogBlock
cvsdist 1401a3e
+		map <buffer> <LocalLeader>c <Plug>AddChangelogBlock
cvsdist 1401a3e
 	endif
cvsdist 1401a3e
 	if !hasmapto("<Plug>AddChangelogEntry")
cvsdist 1401a3e
 		map <buffer> <LocalLeader>CH <Plug>AddChangelogEntry
cvsdist 1401a3e
@@ -62,7 +62,7 @@
cvsdist 1401a3e
 		" insert changelog header
cvsdist 1401a3e
 		call append(a:line,
cvsdist 1401a3e
 			\ "* " . strftime("%a %b %d %Y") . 
cvsdist 1401a3e
-			\ " " . <SID>GetTagValue("Packager") .
cvsdist 1401a3e
+			\ " " . g:packager .
cvsdist 1401a3e
 			\ " " . <SID>GetTagValue("Version") .
cvsdist 1401a3e
 			\ "-" . <SID>GetTagValue("Release")
cvsdist 1401a3e
 			\)