From dc14a37959e5390f9b4829c673e16d7b018ab4c6 Mon Sep 17 00:00:00 2001 From: thrombe Date: Thu, 16 Apr 2026 23:26:11 +0530 Subject: [PATCH] fix: import path resolution --- src/features/goto.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/goto.zig b/src/features/goto.zig index 953aa594f..b01a83a07 100644 --- a/src/features/goto.zig +++ b/src/features/goto.zig @@ -266,7 +266,7 @@ fn gotoDefinitionString( const path = try std.Io.Dir.path.join(arena, &.{ dir, import_str }); std.Io.Dir.accessAbsolute(io, path, .{}) catch |err| switch (err) { error.Canceled => return error.Canceled, - else => {}, + else => continue, }; break :blk .{ .one = try .fromPath(arena, path) }; }