vim .vimrc
set tabstop=4 set number set cul set cuc hi CursorColumn ctermfg=3 ctermbg=2 function InsertPythonComment() exe 'normal'.1.'G' let line = getline('.') if line =~ '^#!.*$' || line =~ '^#.*coding:.*$' return endif normal O call setline('.', '#!/usr/bin/env python') normal o call setline('.', '# -*- coding:utf-8 -*-') normal o call setline('.', ' ') normal o call setline('.', '# Author : '.g:python_author) normal o call setline('.', '# E-mail : '.g:python_email) normal o call setline('.', '# Date : '.strftime("%y/%m/%d %H:%M:%S")) normal o call setline('.', '# Desc : ') normal o call setline('.', ' ') normal o call cursor(7, 17) endfunction function InsertCommentWhenOpen() if a:lastline == 1 && !getline('.') call InsertPythonComment() end endfunc au FileType python :%call InsertCommentWhenOpen() let g:python_author = 'zhibo.wang' let g:python_email = 'gm.zhibo.wang@gmail.com'
本文作者:🐳.城南
本文链接:https://www.cnblogs.com/dockers/p/7513036.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步