From 7230e7de86266cc4e1e1b23eed7e912d55492481 Mon Sep 17 00:00:00 2001 From: btipling Date: Sat, 22 Jun 2024 00:45:26 -0700 Subject: [PATCH] split is a deprecated compile error and unused using std.mem.split is a compileError as off this change https://github.com/ziglang/zig/commit/76fb2b685b202ea665b850338e353c7816f5b2bb --- src/tui/editor.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tui/editor.zig b/src/tui/editor.zig index 9e3c9b0..3aa8c90 100644 --- a/src/tui/editor.zig +++ b/src/tui/editor.zig @@ -33,7 +33,6 @@ pub const Selection = Buffer.Selection; const Allocator = std.mem.Allocator; const copy = std.mem.copy; const fmt = std.fmt; -const split = std.mem.split; const time = std.time; const scroll_step_small = 3;