feat: add to_upper and to_lower commands on Alt-u and Alt-l

This commit is contained in:
CJ van den Berg 2024-05-12 00:10:11 +02:00
parent 045b8c112d
commit 94e045ffe7
7 changed files with 77 additions and 4 deletions

View file

@ -88,6 +88,11 @@ pub fn build(b: *std.Build) void {
.root_source_file = .{ .path = "src/tracy_noop.zig" },
});
const zg_dep = b.dependency("zg", .{
.target = target,
.optimize = dependency_optimize,
});
const themes_dep = b.dependency("themes", .{});
const syntax_dep = b.dependency("syntax", .{
@ -224,6 +229,7 @@ pub fn build(b: *std.Build) void {
.{ .name = "color", .module = color_mod },
.{ .name = "diff", .module = diff_mod },
.{ .name = "help.md", .module = help_mod },
.{ .name = "CaseData", .module = zg_dep.module("CaseData") },
},
});