From 2674428a4956950ad692d27296957ecb5e34371d Mon Sep 17 00:00:00 2001 From: danymat Date: Fri, 11 Mar 2022 10:39:39 +0100 Subject: [PATCH] ref(c) Use type name instead of jump (#80) --- lua/neogen/templates/doxygen.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/neogen/templates/doxygen.lua b/lua/neogen/templates/doxygen.lua index 5fe9a78..4c86dbc 100644 --- a/lua/neogen/templates/doxygen.lua +++ b/lua/neogen/templates/doxygen.lua @@ -8,7 +8,7 @@ return { { nil, "/**", { type = { "func", "class", "type" } } }, { i.ClassName, " * @class %s", { type = { "class" } } }, - { i.Type, " * @typedef $1", { type = { "type" } } }, + { i.Type, " * @typedef %s", { type = { "type" } } }, { nil, " * @brief $1", { type = { "func", "class", "type" } } }, { nil, " *", { type = { "func", "class", "type" } } }, { i.Tparam, " * @tparam %s $1" },