diff --git a/src/source.cc b/src/source.cc index 666348d..35a78e8 100644 --- a/src/source.cc +++ b/src/source.cc @@ -2533,7 +2533,7 @@ bool Source::View::on_key_press_event_smart_inserts(GdkEventKey *key) { 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 == '>' || *iter == '/') return true; return false; };