removed mark related code

This commit is contained in:
Robert Burnett 2025-05-13 06:48:38 -05:00 committed by CJ van den Berg
parent acded15af8
commit fcbb377237
4 changed files with 25 additions and 179 deletions

View file

@ -20,12 +20,6 @@ const MainView = @import("mainview.zig");
const Allocator = std.mem.Allocator;
pub const GlobalMarkLocation = struct {
row: usize,
col: usize,
filepath: [512]u8 = .{0} ** 512,
};
allocator: Allocator,
rdr_: renderer,
config_: @import("config"),
@ -68,7 +62,6 @@ fontfaces_: std.ArrayListUnmanaged([]const u8) = .{},
enable_mouse_idle_timer: bool = false,
query_cache_: *syntax.QueryCache,
frames_rendered_: usize = 0,
global_marks: [256]?GlobalMarkLocation = .{null} ** 256,
const keepalive = std.time.us_per_day * 365; // one year
const idle_frames = 0;