From 3323b81fab518c600d8662243f1e503ae30a1f66 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Mon, 11 Jan 2021 12:15:16 +0300 Subject: [PATCH] update --- default.cfg | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/default.cfg b/default.cfg index 450cb9a..f2a94db 100644 --- a/default.cfg +++ b/default.cfg @@ -874,7 +874,15 @@ sp_extern_paren = ignore # ignore/add/remove/force # Add or remove space after the opening of a C++ comment, as in '// A'. sp_cmt_cpp_start = ignore # ignore/add/remove/force -# If true, space is added with sp_cmt_cpp_start will be added after doxygen +# Add or remove space in a C++ region marker comment, as in '// BEGIN'. +# A region marker is defined as a comment which is not preceded by other text +# (i.e. the comment is the first non-whitespace on the line), and which starts +# with either 'BEGIN' or 'END'. +# +# Overrides sp_cmt_cpp_start. +sp_cmt_cpp_region = ignore # ignore/add/remove/force + +# If true, space added with sp_cmt_cpp_start will be added after Doxygen # sequences like '///', '///<', '//!' and '//!<'. sp_cmt_cpp_doxygen = true # true/false @@ -1030,6 +1038,12 @@ indent_extern = false # true/false # Whether the 'class' body is indented. indent_class = true # true/false +# Additional indent before the leading base class colon. +# Negative values decrease indent down to the first column. +# Requires a newline break before colon (see pos_class_colon +# and nl_class_colon) +indent_before_class_colon = 0 # number + # Whether to indent the stuff after a leading base class colon. indent_class_colon = true # true/false