1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

-added brace matching to go with the new code completion

This commit is contained in:
Juan Linietsky
2014-12-17 01:53:34 -03:00
parent fd4648c081
commit c8b2a5f64a
7 changed files with 151 additions and 1 deletions

View File

@@ -601,6 +601,7 @@ CodeTextEditor::CodeTextEditor() {
text_editor->set_margin(MARGIN_BOTTOM,20);
text_editor->add_font_override("font",get_font("source","Fonts"));
text_editor->set_show_line_numbers(true);
text_editor->set_brace_matching(true);
line_col = memnew( Label );
add_child(line_col);