@jeremiaskleer commented on this pull request.


In src/editor.c:

>  	}
 
 	if (get_project_pref(auto_continue_multiline))
 	{	/* " * " auto completion in multiline C/C++/D/Java comments */
-		auto_multiline(editor, line);
+		if (auto_multiline(editor, line, FALSE) && doHandleBracket) {

The output of
/** int main() {
with auto-close enabled ( == pressing enter-key on keyboard) in an c++ document is

with the change ("|" shows the cursor afterwards:

/**
 * int main() {
 *     |
 * }

without:

/**
 * int main() {
|*
}

and in original Geany 1.37 on Windows:

/**
 * int main() {
 *|})


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.