fix tab insertion

This commit is contained in:
Maxime Coste 2012-04-03 13:38:01 +00:00
parent 30bc1bad8f
commit c8447658c0

View File

@ -92,6 +92,9 @@ bool insert_char(IncrementalInserter& inserter, const Key& key)
case 'm':
inserter.insert(std::string() + '\n');
break;
case 'i':
inserter.insert(std::string() + '\t');
break;
case 'd':
inserter.move_cursors({0, -1});
break;