Vim設定多行注釋快速鍵

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.