学习 Vim 插件 DoxygenToolKit.vim

Posted on 2015-01-12 15:21 in Tools

前面一篇博客已经介绍过 Doxygen 了,Doxygen 的确是一个非常给力的工具,但是为了生成文档,我们必须在注释上花费很大的时间和精力。那么问题又来了:如何才能既享受 Doxygen 的强大功能,同时又避免注释中大量的重复性的输入?

解决思路是让编辑器来替我们写那些格式和内容固定的部分,我们只负责写真正的有效内容。所以答案就是:Vim + DoxygenToolKit.vim 插件

DoxygenToolKit

DoxygenToolKit 是 Vim 的一款插件,用它可以很方便地添加 Doxygen 风格的注释,可以节省大量时间和精力,提高写代码的效率。

DoxygenToolKit Official Website 官网上介绍,目前定义了 5 个功能:

  • Generates a doxygen license comment. The tag text is configurable.

  • Generates a doxygen author skeleton. The tag text is configurable.

  • Generates a doxygen comment skeleton for a C, C++ or Python function or class, including @brief, @param (for each named argument), and @return. The tag text as well as a comment block header and footer are configurable. (Consequently, you can have \brief, etc. if you wish, with little effort.)

  • Ignore code fragment placed in a block defined by #ifdef ... #endif (C/C++). The block name must be given to the function. All of the corresponding blocks in all the file will be treated and placed in a new block DOX-SKIP-BLOCK (or any other name that you have configured). Then you have to update PREDEFINED value in your doxygen configuration file with correct block name. You also have to set ENABLE-PREPROCESSING to YES.

  • Generate a doxygen group (begining and ending). The tag text is configurable.

Installation

如果我们使用 Vundle 管理插件,安装步骤就非常简单了:

  1. 在 Vundle 中加入:

    Plugin 'DoxygenToolkit.vim'
    
  2. 打开 Vim,输入命令:

    :PluginInstall
    

Vundle 会自动完成安装 :-D

Configuration for c++

我们有两种方法可以修改设置,方法一是直接在 DoxygenToolKit.vim 脚本文件中修改相关变量;方法二是在 ~/.vimrc 里面修改。显然方法二更加好一点,因为如果用方法一直接改原脚本,可能还得保存备份才能恢复默认值。

let g:loaded_DoxygenToolkit = 1
" set for C++ style
let g:DoxygenToolkit_commentType == "C++"

let g:DoxygenToolkit_briefTag_funcName = "yes"
let g:DoxygenToolkit_authorName = "Qian Gu"

Usage

官网上也给出了使用方法:

  • License

    将光标放在需要生成 License 的地方,然后输入命令 :DoxLic

  • Author

    将光标放在合适的地方,然后输入命令 :DoxAuthor

  • Function / Class

    将光标放在 function 或者 class 的名字所在的一行,然后输入命令 :Dox

  • Ignore code fragment (C/C++ Only)

    如果想忽略调试部分的代码,那么只需要执行命令 :DoxUndoc(DEBUG) 即可

  • Group

    输入命令 DoxBlock 来插入一个注释块

为了方便使用,我们可以自定义一些 map,省去输入命令的繁琐。

Example

同样是官网上的例子:

假设有个函数如下

1
2
3
4
5
6
7
int 
foo(char mychar, 
    int myint, 
    double* myarray, 
    int mask = DEFAULT) 
{ //... 
}

那么执行 :Dox 命令之后会生成以下内容

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
/** 
* @brief 
* 
* @param mychar 
* @param myint 
* @param myarray 
* @param mask 
* 
* @return 
*/

Ref

DoxygenToolKit.vim