Vim plugins continued …
Always we need to add comment, toggle comment in our codes, and there are different comment syntax for different programming languages. With nerdcommenter, forget about the difference, simply achieve these needs with a hotkey, and the right comment style will be applied depending on the file type. It is a very focused plugin that does the one thing very well. I like it. It is also a plugin from Martin Grenfell 🙂
A good coding practice is using doxygen style to comment functions, modules and files, later using the Doxygen tool to auto generate documentation. With DoxygenToolkit, you can forget about doxgen formats but focusing on the real important part: like function illustraion, parameter explaination, etc.
I often use DoxygenToolkit to comment my functions and modules, nerdcommenter to do general purpose comment, and vim-licenses to generate correct license headers. Altogether they work great.
ctrlp is a very famous and useful plugin. Basically with ctrlp, we can do fuzzy finding by file, mru, buffer, tag, etc. As the plugin name shows, just use Ctrl+p and see!
ag.vim is a vim front end for calling the silver searcher ag. In my post “Useful Development Tools – 3”, I recommend using ag for searching in source codes as ag works smart and fast.
However recently ag.vim indicates in the github that it is deprecated and suggests the use of ack.vim. Well I have not tried the latter but you can git a try. But ag.vim still works now.
Recent Comments