Compare commits

...

9 Commits

5 changed files with 26 additions and 6 deletions

5
classheader.txt Normal file
View File

@ -0,0 +1,5 @@
/**
* @class $(fclass)
* @brief TODO
* @details TODO
*/

View File

@ -172,7 +172,7 @@ sp_paren_paren = force # ignore/add/remove/force
sp_cparen_oparen = ignore # ignore/add/remove/force
# Whether to balance spaces inside nested parentheses.
sp_balance_nested_parens = true # true/false
sp_balance_nested_parens = false # true/false
# Add or remove space between ')' and '{'.
sp_paren_brace = force # ignore/add/remove/force
@ -2621,11 +2621,13 @@ 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 = "fileheader.txt" # string
cmt_insert_file_header = "" # 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
# '$(filename)', that will be replaced with the current file's name.
# cmt_insert_file_footer = "filefooter.txt" # string
cmt_insert_file_footer = "" # string
# Path to a file that contains text to insert before a function definition if
@ -2634,11 +2636,13 @@ 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 = "funcheader.txt" # string
cmt_insert_func_header = "" # 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 = "classheader.txt" # string
cmt_insert_class_header = "" # string
# Path to a file that contains text to insert before an Objective-C message
@ -2667,7 +2671,7 @@ cmt_insert_before_inlines = true # true/false
# or destructor.
#
# Applies to cmt_insert_func_header.
cmt_insert_before_ctor_dtor = false # true/false
cmt_insert_before_ctor_dtor = true # true/false
#
# Code modifying options (non-whitespace)

1
filefooter.txt Normal file
View File

@ -0,0 +1 @@
// EOF $(filename)

5
fileheader.txt Normal file
View File

@ -0,0 +1,5 @@
/**
* @file $(filename)
* @brief TODO
* @details TODO
*/

5
funcheader.txt Normal file
View File

@ -0,0 +1,5 @@
/**
* @fn $(fclass)::$(function)
* $(javaparam)
* @details TODO
*/