1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

Add vi-like 'a' command.

This commit is contained in:
Andreas Kling 2018-12-04 13:05:35 +01:00
parent b74fcd0a37
commit e02eca2a5e

View file

@ -151,6 +151,7 @@ int Editor::exec()
case 'k': move_up(); break;
case 'l': move_right(); break;
case 'i': set_mode(EditingDocument); break;
case 'a': move_right(); set_mode(EditingDocument); break;
case 'q': m_should_quit = true; break;
case '\\': set_mode(EditingCommand); break;
}