remove imgui and devmode

imgui has been a source of compilation challenges (our fault not theirs)
and devmode hasn't worked in awhile, so drop it.
This commit is contained in:
Mitchell Hashimoto
2023-08-20 08:50:24 -07:00
parent 27c62ea381
commit 7ccf86b175
22 changed files with 0 additions and 1081 deletions

View File

@@ -2,7 +2,6 @@
const std = @import("std");
const Allocator = std.mem.Allocator;
const DevMode = @import("../DevMode.zig");
const terminal = @import("../terminal/main.zig");
const renderer = @import("../renderer.zig");
@@ -24,9 +23,6 @@ terminal: *terminal.Terminal,
/// a future exercise.
preedit: ?Preedit = null,
/// The devmode data.
devmode: ?*const DevMode = null,
pub const Cursor = struct {
/// Current cursor style. This can be set by escape sequences. To get
/// the default style, the config has to be referenced.