每当我写一个新的python程序时,我发现自己一遍又一遍地写出相同的初始行:
java.util.Base64
我不想每次都手工做。我希望每次打开扩展名为#!/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)
的不存在的文件时,vim都会向我显示此文件,以便我可以根据需要对其进行修改,然后将其保存到新创建的源文件中。
我怎样才能做到这一点?
如果答案已经存在,请道歉。我以为会是,但我无法在任何地方找到它。
答案 0 :(得分:6)
/etc/vim/vimrc
或/etc/vimrc
或~/.vimrc
" python skeleton
autocmd BufNewFile *.py 0r ~/.vim/skeleton.py
~/.vim/skeleton.py
将原始帖子中的python代码放在此文件中 simple-user
skeleton
/template
中的