diff --git a/src/editor.cc b/src/editor.cc index 70ac6068..1edcc894 100644 --- a/src/editor.cc +++ b/src/editor.cc @@ -449,6 +449,9 @@ IncrementalInserter::IncrementalInserter(Editor& editor, InsertMode mode) } last = first; break; + case InsertMode::InsertAtNextLineBegin: + assert(false); // not implemented + break; } if (first.underlying_iterator().is_end()) --first;