I'm trying to get into the habit of using one editor (gVim 7.3 on Windows XP) for all programming and development tasks.
I'd like to update a header in any open file when I save using :w
The header looks like this (in a C file):
/* Filename: hello.c
* Filesize: 345 bytes
* Last Modified: Fri Feb 25, 2011 01:55PM
*/
I actually already figured out how to update Last Modified, by including the following in my _vimrc file:
" If buffer modified, update any 'Last modified: ' in the first 20 lines.
" 'Last modified: ' can have up to 10 characters before (they are retained).
" Restores cursor and window position using save_cursor variable.
function! LastModified()
if &modified
let save_cursor = getpos(".")
let n = min([20, line("$")])
keepjumps exe '1,' . n . 's#^\(.\{,10}Last Modified:\).*#\1' .
\ strftime(' %a %b %d, %Y %I:%M%p') . '#e'
call histdel('search', -1)
call setpos('.', save_cursor)
endif
endfun
autocmd BufWritePre * call LastModified()
My question is, using a similar approach, how can I have Filename and Filesize update as well? Thanks for your help.