這是一款供Vim使用的外掛程式,看名字可以知道,它和The NERD Tree同屬一個作者。使用這款外掛程式,你可以對多種檔案類型的檔案進行不同方式地、快速地注釋。這對使用Vim來寫代碼或者修改設定檔的同學來說,無疑是提升效率和快感的一件利器。你可以到這裡來下載這個外掛程式,將壓縮包裡面的doc/和plugin/檔案夾丟到~/.vim/下面就是安裝了。為了可以使用其協助文檔,你還需要在Vim中執行:helptags
~/.vim/doc/來註冊。
install details |
The NERD Commenter requires Vim 7 or higher.
Extract the plugin files in your ~/.vim (*nix) or ~/vimfiles (Windows). You
should have 2 files:
plugin/NERD_commenter.vim
doc/NERD_commenter.txt
Next, to finish installing the help file run:
:helptags ~/.vim/doc
See |add-local-help| for more details.
Make sure that you have filetype plugins enabled, as the script makes use of
|'commentstring'| where possible (which is usually set in a filetype plugin).
See |filetype-plugin-on| for details, but basically, stick this in your vimrc
filetype plugin on |
簡單介紹下NERD Commenter的常用鍵綁定,以C/C++檔案為例,詳析的使用方法,請:h NERDCommenter。在Normal或者Visual 模式下:
- ,ca,在可選的注釋方式之間切換,比如C/C++ 的塊注釋/* */和行注釋//
- ,cc,注釋當前行
- ,c,切換注釋/非注釋狀態
- ,cs,以”性感”的方式注釋
- ,cA,在當前行尾添加註釋符,並進入Insert模式
- ,cu,取消注釋
- Normal模式下,幾乎所有命令前面都可以指定行數
- Visual模式下執行命令,會對選中的特定區塊進行注釋/反注釋
註:各命令首碼是可以自己設定的,通常是逗號’,'或者’\’.
你好,我按照NERD Commenter安裝好了,但是為什麼我按,cc就給當前行刪除了呢?我試了下\cc,管用了,為什麼呢?能不能把這個配置或者什麼給我講清楚,網上我找不到資料,謝謝你了!
↑ 原鵬飛 @ September 8, 2011,2:37 pm(#)
有一個選項mapleader定義了所代表的字元,許多外掛程式的鍵映射使用了這個,可以根據需要在設定檔裡面set mapleader=,設定, ^_^
這個命令首碼怎麼設定呢?
Reply↑ Yuan @ April 1, 2011,8:01
pm(#)