fix: update libvaxis and use stable upstream URL for zg

This commit is contained in:
CJ van den Berg 2024-11-14 15:34:06 +01:00
parent ce96caa3fc
commit 8308be76cd
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 11 additions and 11 deletions

View file

@ -486,7 +486,7 @@ const Loop = struct {
switch (builtin.os.tag) {
.windows => {
var parser: vaxis.Parser = .{
.grapheme_data = &self.vaxis.unicode.grapheme_data,
.grapheme_data = &self.vaxis.unicode.width_data.g_data,
};
const a = self.vaxis.opts.system_clipboard_allocator orelse @panic("no tty allocator");
while (!self.should_quit) {
@ -495,7 +495,7 @@ const Loop = struct {
},
else => {
var parser: vaxis.Parser = .{
.grapheme_data = &self.vaxis.unicode.grapheme_data,
.grapheme_data = &self.vaxis.unicode.width_data.g_data,
};
const a = self.vaxis.opts.system_clipboard_allocator orelse @panic("no tty allocator");