由于最近个人在写码字的时候总是想一个文件创建起来总想着希望他可以自动的描述一下文件的基本信息,然后又看见貌似别人在创建.c文件的时候会自动的生成一些文件头信息,于是自己试着google配置了一下,详细的配置情况如下:
autocmd BufNewFile *.[ch],*.hpp,*.cpp exec “:call SetComment()”
func SetComment()
call setline(1,”/*===============================================================”)
call append(line(“.”), “* Copyright (C) “.strftime(“%Y”).” All rights reserved.”)
call append(line(“.”)+1, “* “)
call append(line(“.”)+2, “* #File :”.expand(“%:t”))
call append(line(“.”)+3, “* #Author : Arts”)
call append(line(“.”)+4, “* #Create date :”.strftime(“%Y-%m-%d %H:%M”))
call append(line(“.”)+5, “* #Express : “)
call append(line(“.”)+6, “* #Modified date :”.strftime(“%Y-%m-%d %H:%M”))
call append(line(“.”)+7, “* #Company : Arts”)
call append(line(“.”)+8, “* “)
call append(line(“.”)+9, “================================================================*/”)
call append(line(“.”)+10, “”)
endfunc
“更新最近修改时间和文件名
function UpdateTitle()
call setline(4,”* #File :”.expand(“%:t”))
call setline(8,”* #Modified date :”.strftime(“%Y-%m-%d %H:%M”))
endf
“判断前10行代码里面,是否有Modified这个单词,
“如果没有的话,代表没有添加过作者信息,需要新添加;
“如果有的话,那么只需要更新即可
function TitleDet()
let n=1
while n < 10
let line = getline(n)
if line =~’^.*Modified.*$’
call UpdateTitle()
return
endif
let n=n+1
endwhile
call AddTitle()
endfunction
au BufWritePost * :call UpdateTitle()
autocmd BufNewFile * normal 7G 17l