refactor: make bin_path a module

This commit is contained in:
CJ van den Berg 2025-04-20 18:56:06 +02:00
parent 5ad074c681
commit 845403f2ae
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 8 additions and 2 deletions

View file

@ -3,7 +3,7 @@ const syntax = @import("syntax");
const builtin = @import("builtin");
const RGB = @import("color").RGB;
const bin_path = @import("bin_path.zig");
const bin_path = @import("bin_path");
const checkmark_width = if (builtin.os.tag != .windows) 2 else 3;

View file

@ -4,8 +4,8 @@ const cbor = @import("cbor");
const thespian = @import("thespian");
const flags = @import("flags");
const builtin = @import("builtin");
const bin_path = @import("bin_path");
const bin_path = @import("bin_path.zig");
const list_languages = @import("list_languages.zig");
pub const file_link = @import("file_link.zig");