2

The function :

function show($string = "hi") {
    echo $string;
}

I need the comments like:

/**
* @brief 
* 
* @param $string
*
* @returns
*/

function show($string = "hi") {
    echo $string;
}

Can I generate comments like this by yasnippet?

In vim, doxygentoolkit can do it.

Whitch tool i can use in emacs?

bloody numen
  • 487
  • 6
  • 13

1 Answers1

0

Use Doxymacs. It hasn't been updated in a while, but still works for me.

scottfrazer
  • 17,079
  • 4
  • 51
  • 49