自动给VIM添加python头文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动给VIM添加python头文件相关的知识,希望对你有一定的参考价值。
用vim新建一个python文件后,如pw.py,会自动填写文件头部,如:
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # Pw @ 2013-04-15 17:26:33
将以下代码加入/etc/vim/vimrc文件:
function HeaderPython() call setline(1, "#!/usr/bin/env python") call append(1, "# -*- coding: utf-8 -*-") call append(2, "# Pw @ " . strftime(‘%Y-%m-%d %T‘, localtime())) normal G normal o normal o endf autocmd bufnewfile *.py call HeaderPython()
以上是关于自动给VIM添加python头文件的主要内容,如果未能解决你的问题,请参考以下文章