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:
parent
b74fcd0a37
commit
e02eca2a5e
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue