From e02eca2a5e6c605660f9ad4080f52b80bc67e931 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 4 Dec 2018 13:05:35 +0100 Subject: [PATCH] Add vi-like 'a' command. --- Editor/Editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Editor/Editor.cpp b/Editor/Editor.cpp index 0ad3b3edd0..be16065e8e 100644 --- a/Editor/Editor.cpp +++ b/Editor/Editor.cpp @@ -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; }