作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每次我写一个新的 python 程序时,我发现自己一遍又一遍地写相同的初始行:
#!/usr/bin/env python
'''
Description of the program
'''
import always, the, same, libraries
def helper_function(helpers_args):
'''
A function that is called in get_main_output, but that someone might want to import too.
'''
continue
def get_main_output(program_arguments):
'''
Description of the main function
'''
continue
if __name__ == '__main__':
output = get_main_output(sys.argv)
.py
的不存在的文件时,我都希望 vim 向我显示此文件,以便我可以根据需要修改它,然后将其保存到我新创建的源文件中。
最佳答案
在 /etc/vim/vimrc
或 /etc/vimrc
或 ~/.vimrc
" python skeleton
autocmd BufNewFile *.py 0r ~/.vim/skeleton.py
~/.vim/skeleton.py
skeleton
/ template
内
autocmd.txt
关于vim - 给定文件扩展名,如何在vim中定义默认初始文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49012031/
我是一名优秀的程序员,十分优秀!