refactor: make bin_path a module
This commit is contained in:
parent
5ad074c681
commit
845403f2ae
3 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue