diff --git a/src/input_handler.cc b/src/input_handler.cc index 5d88a4f5..06f1eb1e 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -492,7 +492,7 @@ public: if (c == '\n' or c == '\r') { res += StringView{pos, it}; - utf8::dump(std::back_inserter(res), c == '\n' ? 0x2424 : 0x240D); + res += c == '\n' ? "␤" : "␍"; pos = it+1; } }