Kaydet (Commit) 9fff34a4 authored tarafından Enrico Tröger's avatar Enrico Tröger

Auto completion of multi line comments is now (again) configurable with the auto…

Auto completion of multi line comments is now (again) configurable with the auto complete constructs option.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1377 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 90b01daf
......@@ -5,6 +5,8 @@
src/search.c, src/tools.c, src/ui_utils.c, src/utils.c:
Fixed several compiler warnings (mainly shadowing local variables
and unreachable code).
* src/sci_cb.c: Auto completion of multi line comments is now (again)
configurable with the auto complete constructs option.
2007-03-09 Nick Treleaven <nick.treleaven@btinternet.com>
......
......@@ -349,15 +349,16 @@ static void on_new_line_added(ScintillaObject *sci, gint idx)
sci_add_text(sci, text);
g_free(text);
}
/// TODO on which option should auto_multiline() depend? indention vs. auto completion
// " * " auto completion in multiline C/C++/D/Java comments
auto_multiline(sci, pos);
}
}
if (app->pref_editor_auto_complete_constructs)
{
// " * " auto completion in multiline C/C++/D/Java comments
auto_multiline(sci, pos);
sci_cb_auto_latex(idx, pos);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment