gpt4 book ai didi

python - 在 vim 脚本中将创建/修改时间添加到 python 模板

转载 作者:太空宇宙 更新时间:2023-11-03 15:26:18 24 4
gpt4 key购买 nike

我在~/.vim/template/pythontmp.txt中写了一个简单的python模板,

并使用

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

在我创建新的 python 脚本时加载模板。

问题是我想将创建时间添加到文档的评论中。

我该怎么做?谢谢!

最佳答案

您可以为此使用 strftime 函数:

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

根据文档,某些系统上不存在 strftime。有关格式的详细信息,请参见 man strftime(如果您使用的是 *nix)。

关于python - 在 vim 脚本中将创建/修改时间添加到 python 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6366686/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com