From 2cc2863d620b6e8c6640b801369d253f50c3d625 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Sat, 18 Apr 2020 12:43:40 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A8=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1=8B=20?= =?UTF-8?q?=D0=B4=D0=BB=D1=8F=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=D0=B0=D1=80=D0=B8=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- classheader.txt | 4 ++++ default.cfg | 6 +++--- fileheader.txt | 4 ++++ funcheader.txt | 5 +++++ 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 classheader.txt create mode 100644 fileheader.txt create mode 100644 funcheader.txt diff --git a/classheader.txt b/classheader.txt new file mode 100644 index 0000000..1b41b6a --- /dev/null +++ b/classheader.txt @@ -0,0 +1,4 @@ +/*! + * @class $(fclass) + * @brief TODO + */ diff --git a/default.cfg b/default.cfg index cc73947..2de0561 100644 --- a/default.cfg +++ b/default.cfg @@ -2621,7 +2621,7 @@ cmt_multi_first_len_minimum = 4 # unsigned number # Path to a file that contains text to insert at the beginning of a file if # the file doesn't start with a C/C++ comment. If the inserted text contains # '$(filename)', that will be replaced with the current file's name. -cmt_insert_file_header = "" # string +cmt_insert_file_header = "fileheader.txt" # string # Path to a file that contains text to insert at the end of a file if the # file doesn't end with a C/C++ comment. If the inserted text contains @@ -2634,12 +2634,12 @@ cmt_insert_file_footer = "" # string # replaced with, respectively, the name of the function, the javadoc '@param' # and '@return' stuff, or the name of the class to which the member function # belongs. -cmt_insert_func_header = "" # string +cmt_insert_func_header = "funcheader.txt" # string # Path to a file that contains text to insert before a class if the class # isn't preceded by a C/C++ comment. If the inserted text contains '$(class)', # that will be replaced with the class name. -cmt_insert_class_header = "" # string +cmt_insert_class_header = "classheader.txt" # string # Path to a file that contains text to insert before an Objective-C message # specification, if the method isn't preceded by a C/C++ comment. If the diff --git a/fileheader.txt b/fileheader.txt new file mode 100644 index 0000000..1c12db4 --- /dev/null +++ b/fileheader.txt @@ -0,0 +1,4 @@ +/*! + * @file $(filename) + * @brief TODO + */ diff --git a/funcheader.txt b/funcheader.txt new file mode 100644 index 0000000..7bb9e6f --- /dev/null +++ b/funcheader.txt @@ -0,0 +1,5 @@ +/*! + * @fn $(fclass)::$(function) + * @brief TODO + * $(javaparam) + */