Измените шаблон Doxygen в CLion - PullRequest
0 голосов
/ 27 мая 2020

В Clion, когда я набираю / **, он генерирует заглушку, которая выглядит следующим образом:

/**
 * 
 * @param txdata 
 * @param rxdata 
 * @param bitmask 
 * @param length 
 */

Однако я хотел бы расширить его, чтобы получить больше информации, по крайней мере, @brief обозначение:

 /**
 * @brief   A brief description, one sentence, one line.
 * @details A detailed description of the functionality, it can span over
 *          multiple lines, can be omitted.
 * @pre     Prerequisites about the use of the functionality, there can be
 *          more than one "pre" tags, can be omitted.
 * @post    Postrequisites about the use of the functionality, there can be
 *          more than one "post" tags, can be omitted.
 * @note    There can be one or more notes, can be omitted.
 *
 * @param[in] p1        description of parameter one
 * @param[out] p2       description of parameter two
 * @param[in,out] p3    description of parameter three
 * @return              Description of the returned value, must be omitted if
 *                      a function returns void.
 * @retval VALUE1       description of the special returned value one, can be
 *                      omitted.
 * @retval VALUE2       description of the special returned value two, can be
 *                      omitted.
 *
 * @api|@notapi|@special|@init|@sclass|@iclass|@xclass|@isr
*/

Есть ли способ добавить больше тегов к генератору doxygen в Clion? В настройках ничего не нашел.

Я использую Clion 2020.1

...