build: update to zig-0.14.0-dev.3280

This commit is contained in:
CJ van den Berg 2025-02-21 22:17:28 +01:00
parent 9b197e7209
commit a0514a6f7e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
5 changed files with 17 additions and 15 deletions

View file

@ -629,7 +629,7 @@ pub const Editor = struct {
pub fn pop_cursor(self: *Self, _: Context) Result {
if (self.cursels.items.len > 1) {
const cursel = self.cursels.popOrNull() orelse return orelse return;
const cursel = self.cursels.pop() orelse return orelse return;
if (cursel.selection) |sel| if (self.find_selection_match(sel)) |match| {
match.has_selection = false;
};