python自动生成文件头

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python自动生成文件头相关的知识,希望对你有一定的参考价值。

"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: [email protected]
7 #Created Time:
8 ############################

 

配置完成后,再vi 1.py

技术分享

 

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

 

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

以上是关于python自动生成文件头的主要内容,如果未能解决你的问题,请参考以下文章

Vscode for python ide配置

自动给VIM添加python头文件

python自动生成文件头

pycharm自动创建python头文件

Pycharm在创建py文件时,如何自动添加文件头注释?

从 CSV 文件生成 C++ 头文件的 python 脚本(用于数组声明)