1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 15:27:34 +00:00

VimEditingEngine: Add P command to put before cursor

This commit is contained in:
Matthew Hall 2021-07-10 22:24:03 +01:00 committed by Gunnar Beutner
parent 180e2469af
commit c1e2710a0d
2 changed files with 21 additions and 3 deletions

View file

@ -166,7 +166,8 @@ private:
String m_yank_buffer {};
void yank(YankType);
void yank(TextRange);
void put();
void put_before();
void put_after();
TextPosition m_selection_start_position = {};
void update_selection_on_cursor_move();