refactor: ignore watcher events in tui (for now)

This commit is contained in:
CJ van den Berg 2026-02-20 11:40:32 +01:00
parent 50fac630ce
commit 583344d413
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -622,6 +622,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) !void {
if (try m.match(.{ "line_number_mode", tp.more })) // drop broadcast messages
return;
if (try m.match(.{ "FW", "change", tp.more })) // file watcher events
return;
return tp.unexpected(m);
}