码迷,mamicode.com
首页 > 编程语言 > 详细

python自动生成文件头

时间:2017-06-21 21:07:22      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:logs   文件   time()   mail   art   参考   and   time   header   

"auto add pyhton header --start
autocmd BufNewFile *.py 0r ~/.vim/vim_template/vim_python_header
autocmd BufNewFile *.py ks|call FileName()|s
autocmd BufNewFile *.py ks|call CreatedTime()|s

fun FileName()
    if line("$") > 10
        let l = 10  "这里是字母L 不是数字1
    else
        let l = line("$")
    endif
    exe "1," . l . "g/File Name:.*/s/File Name:.*/File Name: " .expand("%")
    "最前面是数字1,这里的File Name: 要和模板中一致
endfun

fun CreatedTime()
    if line("$") > 10
        let l = 10
    else
        let l = line("$")
    endif
    exe "1," . l . "g/Created Time:.*/s/Created Time:.*/Created Time:" .strftime("%Y-%m-%d %T")
    "这里Create Time: 要和模板中一致
endfun
"auto add python header --end

在~/.vimrc中添加如上内容。

另外,还需要在创建~/.vim/vim_template/vim_python_header

1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 ############################
4 #File Name:
5 #Author: frank
6 #Mail: frank0903@aliyun.com
7 #Created Time:
8 ############################

 

配置完成后,再vi 1.py

技术分享

 

这种在vim中创建文件头的方式也可以用于其他语言。

 

参考:http://blog.csdn.net/orangleliu/article/details/41902851

python自动生成文件头

标签:logs   文件   time()   mail   art   参考   and   time   header   

原文地址:http://www.cnblogs.com/black-mamba/p/7061333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!