vim 按F4自动生成注释

map ms:call AddAuthor()‘S
function AddAuthor()
let n=1
while n < 11
let line = getline(n)
if line=~’[#]\s*\s*\SLast\smodified\s*:\s*\S*.*$’
call UpdateTitle()
return
endif
let n = n + 1
endwhile
if &filetype == ‘sh’
call AddTitleForShell()
elseif &filetype == ‘python’
call AddTitleForPython()
else
call AddTitleForC()
endif

endfunction

“” 表示非.sh或.py结尾的文件添加此函数注释
function AddTitleForC()
call append(0,"# **********************************************************")
call append(1,"")
call append(2,"# * Create time : “.strftime(”%Y-%m-%d %H:%M"))
call append(3,"# * Filename : “.expand(”%:t"))
call append(4,"")
call append(5,"# **********************************************************")
endfunction

“” 表示.py添加此函数注释
function AddTitleForPython()
call append(0,"#!/usr/bin/env python")
call append(1,"# coding:utf-8")
call append(2,"")
call append(3,"# **********************************************************")
call append(4,"# * Author : pengyongshi")
call append(5,"# * Email : 58217892@qq.com")
call append(6,"# * Create time : “.strftime(”%Y-%m-%d %H:%M"))
call append(7,"# * Last modified : “.strftime(”%Y-%m-%d %H:%M"))
call append(8,"# * Filename : “.expand(”%:t"))
call append(9,"# * Description : “)
call append(10,”# **********************************************************")
echohl WarningMsg | echo “Successful in adding the copyright.” | echohl None
endfunction

“” 表示.sh文件添加此行数注释
function AddTitleForShell()
call append(0,"#!/bin/bash")
call append(1,"# **********************************************************")
call append(2,"# * Author : pengyongshi")
call append(3,"# * Email : 58217892@qq.com")
call append(4,"# * Create time : “.strftime(”%Y-%m-%d %H:%M"))
call append(5,"# * Last modified : “.strftime(”%Y-%m-%d %H:%M"))
call append(6,"# * Filename : “.expand(”%:t"))
call append(7,"# * Description : “)
call append(8,”# **********************************************************")
endfunction
set number

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值