I wrote a simple python template in ~/.vim/template/pythontmp.txt,

and use

$> autocmd bufnewfile *.py :0r ~/.vim/template/pythontmp.txt

to load the template when i create a new python script.

The problem is that i'd like to add creation time to the comment of the document.

How can I do this? Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can use strftime function for this:

if exists('*strftime')
    au BufNewFile *.py :call append(0, '# Created: '.strftime('%a, %d %b %Y %T %z'))
endif

According to the documentation, strftime is not present on some systems. See man strftime (if you are on *nix) for details of format.

link|improve this answer
thanks! it works as a magic! – Austin Huang Jun 17 '11 at 4:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.