您好,登錄后才能下訂單哦!
很多程序員都想給自己的程序添加一些作者信息之類的信息,那么我們應(yīng)該怎么實(shí)現(xiàn)這個(gè)要求吶?
已shell腳本為例,只需要修改/etc/vimrc配置文件,在文件末尾添加如下內(nèi)容即可
注:vimrc文件中,注釋行是以"標(biāo)記的,否則會(huì)報(bào)錯(cuò)
復(fù)制時(shí)注釋行單獨(dú)復(fù)制,代碼段可以一起復(fù)制,否則會(huì)造成縮進(jìn)不正確
"當(dāng)按F4鍵時(shí)添加作者信息,如果需要在添加一個(gè)python可以添加F5 map <F4> ms:call TitleDet()<cr>'s function AddTitle() call append(0,"#!/bin/bash") call append(1,"##############################################") call append(2,"#Author: Liuzhengwei - 1135960569@qq.com") call append(3,"#QQ:1135960569") call append(4,"#Last modified: ".strftime("%Y-%m-%d %H:%M")) call append(5,"#Filename: ".expand("%:t")) call append(6,"#Description: ") call append(7,"##############################################") echohl WarningMsg | echo "Successful in adding the copyright." | echohl None endfunction "修改文件修改時(shí)間和文件名 function UpdateTitle() normal m' execute '/#*Last modified:/s@:.*$@\=strftime(":%Y-%m-%d %H:%M")@' normal '' normal mk execute '/#*Filename:/s@:.*$@\=":".expand("%:t")@' execute "noh" normal 'k echohl WarningMsg | echo "Successful in updating the copy right." | echohl None endfunction "判斷如果前10行中如果有Last modified:字段 "如果沒有的話,則代表沒有添加過作者的信息等條件,則重新添加 "如果有的話,那么只更新修改時(shí)間和文件名 function TitleDet() let n=1 while n < 7 let line = getline(n) if line =~ '^\#\s*\S*Last\smodified:\S*.*$' call UpdateTitle() return endif let n = n + 1 endwhile call AddTitle() endfunction
添加完成之后,打開一個(gè)test.sh的文件,按F4就會(huì)出現(xiàn)如下信息。
[root@test3 tmp]# vim test.sh #!/bin/bash ############################################## #Author: Liuzhengwei - 1135960569@qq.com #QQ:1135960569 #Last modified: 2016-07-04 15:55 #Filename: test.sh #Description: ##############################################
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。