diff --git a/default.cfg b/default.cfg index ef00de0..653e90a 100644 --- a/default.cfg +++ b/default.cfg @@ -2626,7 +2626,7 @@ 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 # '$(filename)', that will be replaced with the current file's name. -cmt_insert_file_footer = "" # string +cmt_insert_file_footer = "filefooter.txt" # string # Path to a file that contains text to insert before a function definition if # the function isn't preceded by a C/C++ comment. If the inserted text diff --git a/filefooter.txt b/filefooter.txt new file mode 100644 index 0000000..56a3f8b --- /dev/null +++ b/filefooter.txt @@ -0,0 +1 @@ +// EOF $(filename)