1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

TextEditor: Add list of recently open files to the File menu :^)

This commit is contained in:
Andreas Kling 2023-02-06 18:44:11 +01:00
parent 544366ff2a
commit 5f23515796
2 changed files with 22 additions and 0 deletions

View file

@ -24,6 +24,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
Config::pledge_domain("TextEditor");
app->set_config_domain(TRY(String::from_utf8("TextEditor"sv)));
auto preview_mode = "auto"sv;
char const* file_to_edit = nullptr;
Core::ArgsParser parser;