mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
- Add missing "Last Change:" line. - The date on this line in vim.vim is updated by update_date.vim at Make time. (I made a mistake in the file path) - Remove unnecessary "b:loaded_syntax_vim_ex". - Remove "Base File Date:" line in vim.vim.base - Add Doug Kearns as Maintainer closes: #14031 Signed-off-by: h-east <h.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
15 lines
303 B
VimL
15 lines
303 B
VimL
" Update the date of following line in vim.vim.rc.
|
|
" '" Last Change: '
|
|
"
|
|
language C
|
|
silent new ../vim.vim
|
|
normal gg
|
|
let pat = '^"\s*Last\s*Change:\s\+'
|
|
let lnum = search(pat, 'We', 10)
|
|
if lnum > 0
|
|
exec 'norm! lD"=strftime("%b %d, %Y")' . "\rp"
|
|
silent update
|
|
endif
|
|
quitall!
|
|
" vim:ts=4 sw=4 et
|