blob: 35561897c37c5cc0d3d88d59917a0d10a6391eee [file] [log] [blame]
h-east9b53c052024-02-13 21:09:22 +01001" Update the date of following line in vim.vim.rc.
2" '" Last Change: '
3"
4language C
h-east5c3855b2024-02-14 21:00:01 +01005silent new ../vim.vim
h-east9b53c052024-02-13 21:09:22 +01006normal gg
7let pat = '^"\s*Last\s*Change:\s\+'
8let lnum = search(pat, 'We', 10)
9if lnum > 0
dkearnse5c9ba62024-03-05 05:15:42 +110010 exec 'norm! lD"=strftime("%Y %b %d")' . "\rp"
h-east9b53c052024-02-13 21:09:22 +010011 silent update
12endif
13quitall!
14" vim:ts=4 sw=4 et