1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:57:45 +00:00

LibGUI: Add Ctrl-H to insert mode

In Vim, Ctrl-H is effectively equivalent to backspace in insert mode, as
it deletes the previous character.

This commit implements method delete_previous_char() to TextEditor.
delete_char() already exists in EditingEngine, but it deletes the
next character rather than the previous. delete_previous_char() is then
called from within VimEditingEngine.
This commit is contained in:
Ariel Don 2021-07-15 15:50:03 -05:00 committed by Gunnar Beutner
parent 808e5e813f
commit 8230bf8944
3 changed files with 21 additions and 0 deletions

View file

@ -136,6 +136,7 @@ public:
void do_delete();
void delete_current_line();
void delete_previous_word();
void delete_previous_char();
void select_all();
virtual void undo();
virtual void redo();