From 6c818dd2d717d180c565615be36bc4f6e627ca31 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 28 Aug 2018 11:11:56 +0100 Subject: [PATCH] Remove duplicate Doxygen snippets --- UltiSnips/c.snippets | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/UltiSnips/c.snippets b/UltiSnips/c.snippets index af37821..c020765 100644 --- a/UltiSnips/c.snippets +++ b/UltiSnips/c.snippets @@ -158,18 +158,6 @@ int main(${1:int argc, char **argv}) { } endsnippet -snippet "/// p" "Doxygen param tag" -/// @param${1/.+/[/}$1${1/.+/]/} $0 -endsnippet - -snippet "/// b" "Doxygen brief tag" -/// @brief $0 -endsnippet - -snippet copydoc "Doxygen copydoc block" -/// @copydoc $0 -endsnippet - snippet debug "Debug fprintf" fprintf(stderr, "%s: %d: %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__); endsnippet