1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

GTextEditor: Support splitting lines at the cursor with the Return key.

This commit is contained in:
Andreas Kling 2019-03-07 16:49:04 +01:00
parent a64b71fb3d
commit 43d56b6f3a
3 changed files with 30 additions and 6 deletions

View file

@ -73,6 +73,7 @@ private:
void insert(int index, char);
void remove(int index);
void append(const char*, int);
void truncate(int length);
private:
// NOTE: This vector is null terminated.