fix: removed unused code

This commit is contained in:
Igor Támara 2025-11-17 17:44:01 -05:00 committed by CJ van den Berg
parent 0b80ae50db
commit 3d0a0571c2

View file

@ -21,8 +21,6 @@ pub fn process_egc(self: *Type, egc: []const u8) command.Result {
var action: []const u8 = ""; var action: []const u8 = "";
if ((self.ctx.args.match(.{tp.extract(&action)}) catch false)) { if ((self.ctx.args.match(.{tp.extract(&action)}) catch false)) {
try command.executeName(action, command.fmt(.{egc})); try command.executeName(action, command.fmt(.{egc}));
} else {
try command.executeName("match_brackets", .{});
} }
try command.executeName("exit_mini_mode", .{}); try command.executeName("exit_mini_mode", .{});
} }