Compare commits
9 Commits
eb34f3ffb3
...
0cd764fc18
Author | SHA1 | Date | |
---|---|---|---|
0cd764fc18 | |||
d6183cba64 | |||
0e71656233 | |||
12462dee50 | |||
c2f1da4234 | |||
f1a102faac | |||
f9b2960b1d | |||
2cc2863d62 | |||
fc21e4dc67 |
5
classheader.txt
Normal file
5
classheader.txt
Normal file
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @class $(fclass)
|
||||
* @brief TODO
|
||||
* @details TODO
|
||||
*/
|
@ -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
1
filefooter.txt
Normal file
@ -0,0 +1 @@
|
||||
// EOF $(filename)
|
5
fileheader.txt
Normal file
5
fileheader.txt
Normal file
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @file $(filename)
|
||||
* @brief TODO
|
||||
* @details TODO
|
||||
*/
|
5
funcheader.txt
Normal file
5
funcheader.txt
Normal file
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @fn $(fclass)::$(function)
|
||||
* $(javaparam)
|
||||
* @details TODO
|
||||
*/
|
Reference in New Issue
Block a user