vim中自動添加註釋 添加文本資訊,vim注釋

來源:互聯網
上載者:User

vim中自動添加註釋 添加文本資訊,vim注釋
工欲善其事,必先利其器。在開發過程中,方便、快捷的開發環境,能提高工作效率;優美的介面能讓我們心情愉悅;最重要的是,能保持我們在外行嚴重高深莫測的牛逼~

  如果在建立新的來源程式檔案時希望能自動產生一些注釋,比如作者、建立日期,連絡方式等,可以這樣做:

  編輯~/.vimrc 檔案,加入代碼:  

autocmd BufNewFile *.[ch],*.hpp,*.cpp exec ":call SetTitle()" func SetComment()call setline(1,"/********************************************************") call append(line("."),   "*   Copyright (C) ".strftime("%Y")." All rights reserved.")call append(line(".")+1, "*   ") call append(line(".")+2, "*   Filename:".expand("%:t")) call append(line(".")+3, "*   Author  :wang@xd")call append(line(".")+4, "*   Date    :".strftime("%Y-%m-%d")) call append(line(".")+5, "*   Describe:") call append(line(".")+6, "*")call append(line(".")+7, "********************************************************/") endfuncfunc SetTitle()call SetComment()if expand("%:e") == 'hpp' call append(line(".")+8, "#ifndef _".toupper(expand("%:t:r"))."_H") call append(line(".")+9, "#define _".toupper(expand("%:t:r"))."_H") call append(line(".")+10, "#ifdef __cplusplus") call append(line(".")+11, "extern \"C\"") call append(line(".")+12, "{") call append(line(".")+13, "#endif") call append(line(".")+14, "") call append(line(".")+15, "#ifdef __cplusplus") call append(line(".")+16, "}") call append(line(".")+17, "#endif") call append(line(".")+18, "#endif //".toupper(expand("%:t:r"))."_H") elseif expand("%:e") == 'h' call append(line(".")+8, "#ifndef _".toupper(expand("%:t:r"))."_H") call append(line(".")+9, "#define _".toupper(expand("%:t:r"))."_H") call append(line(".")+10," ") call append(line(".")+11, "#endif") call append(line(".")+12, "#endif //".toupper(expand("%:t:r"))."_H") elseif &filetype == 'c' call append(line(".")+8,"#include \"".expand("%:t:r").".h\"") elseif &filetype == 'cpp' call append(line(".")+8, "#include \"".expand("%:t:r").".h\"") endifendfunc

vim中多行注釋 和 刪除多行注釋-------------------------------------------------------------------------------1.多行注釋:  a. 按下Ctrl + v,進入列模式;  b. 在行首選擇需要注釋的行;  c. 按下“I”,進入插入模式;
  d. 然後輸入注釋符(“//”、“#”等);  e. 按下“Esc”鍵。
2.刪除多行注釋:  a. 按下Ctrl + v, 進入列模式;  b. 選定要取消的注釋符;  c. 按下“x”或者“d”.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.