feat: add search box to open recent file mode

This commit is contained in:
CJ van den Berg 2024-03-28 22:18:23 +01:00
parent f88adf9a9d
commit 744c6012a7
2 changed files with 86 additions and 15 deletions

View file

@ -299,6 +299,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) tp.result {
if (try m.match(.{ "exit", "timeout_error", 125, "Operation aborted." }))
return;
if (try m.match(.{ "PRJ", tp.more })) // drop late project manager query responses
return;
return tp.unexpected(m);
}