fix: clean-up empty splits when closing buffers

This commit is contained in:
CJ van den Berg 2026-01-14 20:41:49 +01:00
parent cf7c54aa63
commit 86a516630e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -1484,10 +1484,14 @@ pub fn handle_editor_event(self: *Self, editor: *ed.Editor, m: tp.message) tp.re
if (try m.match(.{ "E", "close" })) {
if (!self.closing_project) {
if (self.get_next_mru_buffer(.non_hidden)) |file_path|
if (self.get_next_mru_buffer_same_view_only(.non_hidden)) |file_path|
self.show_file_async(file_path)
else {
if (self.views.widgets.items.len == 1)
self.show_home_async()
else
self.show_home_async();
tp.self_pid().send(.{ "cmd", "close_split", .{} }) catch return;
}
} else self.show_home_async();
return;
}
@ -1923,6 +1927,25 @@ fn send_buffer_did_open(allocator: std.mem.Allocator, buffer: *Buffer) !void {
project_manager.request_vcs_id(buffer.get_file_path()) catch {};
}
fn get_next_mru_buffer_same_view_only(self: *Self, mode: enum { all, hidden, non_hidden }) ?[]const u8 {
const buffers = self.buffer_manager.list_most_recently_used(self.allocator) catch return null;
defer self.allocator.free(buffers);
const active_file_path = self.get_active_file_path();
for (buffers) |buffer| {
if (active_file_path) |fp| if (std.mem.eql(u8, fp, buffer.get_file_path()))
continue;
if (switch (mode) {
.all => false,
.hidden => !buffer.hidden,
.non_hidden => buffer.hidden,
}) continue;
if (buffer.get_last_view() != self.active_view)
continue;
return buffer.get_file_path();
}
return null;
}
fn get_next_mru_buffer(self: *Self, mode: enum { all, hidden, non_hidden }) ?[]const u8 {
const buffers = self.buffer_manager.list_most_recently_used(self.allocator) catch return null;
defer self.allocator.free(buffers);