Always find the closest existing candidate build file before looking in the directory structure
This commit is contained in:
parent
ca6598572e
commit
fa496936f5
@ -192,15 +192,23 @@ fn newDocument(self: *DocumentStore, uri: []const u8, text: []u8) anyerror!*Hand
|
|||||||
log.debug("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err });
|
log.debug("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err });
|
||||||
};
|
};
|
||||||
} else if (self.zig_exe_path != null and !in_std) {
|
} else if (self.zig_exe_path != null and !in_std) {
|
||||||
// Look into build files to see if we already have one that lives in the directory structure
|
// Look into build files and keep the one that lives closest to the document in the directory structure
|
||||||
var candidate = for (self.build_files.items) |build_file| {
|
var candidate: ?*BuildFile = null;
|
||||||
|
{
|
||||||
|
var uri_chars_matched: usize = 0;
|
||||||
|
for (self.build_files.items) |build_file| {
|
||||||
const build_file_base_uri = build_file.uri[0 .. std.mem.lastIndexOfScalar(u8, build_file.uri, '/').? + 1];
|
const build_file_base_uri = build_file.uri[0 .. std.mem.lastIndexOfScalar(u8, build_file.uri, '/').? + 1];
|
||||||
|
|
||||||
if (std.mem.startsWith(u8, uri, build_file_base_uri)) {
|
if (build_file_base_uri.len > uri_chars_matched and std.mem.startsWith(u8, uri, build_file_base_uri)) {
|
||||||
log.debug("Found a candidate associated build file: {s}", .{build_file.uri});
|
uri_chars_matched = build_file_base_uri.len;
|
||||||
break build_file;
|
candidate = build_file;
|
||||||
}
|
}
|
||||||
} else null;
|
}
|
||||||
|
if (candidate) |build_file| {
|
||||||
|
log.debug("Found a candidate associated build file: `{s}`", .{build_file.uri});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Then, try to find the closest build file.
|
// Then, try to find the closest build file.
|
||||||
var curr_path = try URI.parse(self.allocator, uri);
|
var curr_path = try URI.parse(self.allocator, uri);
|
||||||
defer self.allocator.free(curr_path);
|
defer self.allocator.free(curr_path);
|
||||||
|
Loading…
Reference in New Issue
Block a user