diff --git a/src/source.cpp b/src/source.cpp index 71edf99..9934999 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -2988,7 +2988,7 @@ bool Source::View::on_key_press_event_smart_inserts(GdkEventKey *event) { auto allow_insertion = [](const Gtk::TextIter &iter) { if(iter.ends_line() || *iter == ' ' || *iter == '\t' || *iter == ';' || *iter == ',' || - *iter == ')' || *iter == '[' || *iter == ']' || *iter == '{' || *iter == '}' || *iter == '<' || *iter == '>' || *iter == '/') + *iter == ')' || *iter == ']' || *iter == '}' || *iter == '<' || *iter == '>' || *iter == '/') return true; return false; };