vim 指令碼編寫。(轉)
記得 在window中的許多的IDE都可以對整段代碼進行注釋以便用測試。在測試後再把它還原。今天在linux vim 上也實現了相應的功能 。
對單行注釋:CTRL_C
對多行注釋: 先”V”,進入塊選擇模式。選擇一段代碼。CTRL_C
同樣,還原的命令和上面的一樣。如對一行CTRL_C後,把它注釋了,再CTRL_C後就還原了。
注意代碼應該要整齊,縮排。選擇塊時,要保證塊中的第一行就是最靠左的。不然會出問題。
如在代碼中選擇:
if (a>0)
{
printf (”sssss”);
}
(ctrl_c)會得到:
//if (a>0)
//{
// printf (”sssss”);
//}
再選擇這段代碼:(ctrl_c)後又加到:
if (a>0)
{
printf (”sssss”);
}
以下是vim指令碼:
“功能說明:加入或刪除注釋//
“映射和綁定
nmap :Setcomment
imap :Setcomment
vmap :SetcommentV
command! -nargs=0 Setcomment call s:SET_COMMENT()
command! -nargs=0 SetcommentV call s:SET_COMMENTV()
“非視圖模式下所調用的函數
function! s:SET_COMMENT()
let lindex=line(”.”)
let str=getline(lindex)
“查看當前是否為注釋行
let CommentMsg=s:IsComment(str)
call s:SET_COMMENTV_LINE(lindex,CommentMsg[1],CommentMsg[0])
endfunction
“視圖模式下所調用的函數
function! s:SET_COMMENTV()
let lbeginindex=line(”‘<") "得到視圖中的第一行的行數
let lendindex=line("'>“) “得到視圖中的最後一行的行數
let str=getline(lbeginindex)
“查看當前是否為注釋行
let CommentMsg=s:IsComment(str)
“為各行設定
let i=lbeginindex
while i<=lendindex
call s:SET_COMMENTV_LINE(i,CommentMsg[1],CommentMsg[0])
let i=i+1
endwhile
endfunction
“設定注釋
“index:在第幾行
“pos:在第幾列
“comment_flag: 0:添加註釋符 1:刪除注釋符
function! s:SET_COMMENTV_LINE( index,pos, comment_flag )
let poscur = [0, 0,0, 0]
let poscur[1]=a:index
let poscur[2]=a:pos+1
call setpos(”.”,poscur) “設定游標的位置
if a:comment_flag==0
“插入//
exec “normal! i//”
else
“刪除//
exec “normal! xx”
endif
endfunction
“查看當前是否為注釋行並返回相關資訊
“str:一行代碼
function! s:IsComment(str)
let ret= [0, 0] “第一項為是否為注釋行(0,1),第二項為要處理的列,
let i=0
let strlen=len(a:str)
while i “空格和tab允許為”//”的首碼
if !(a:str[i]==’ ‘ || a:str[i] == ‘ ‘ )
let ret[1]=i
if a:str[i]==’/’ && a:str[i+1]==’/’
let ret[0]=1
else
let ret[0]=0
endif
return ret
endif
let i=i+1
endwhile
return [0,0] “空串處理
endfunction