From 854973104e064a94b231ee8414bb21e2405025d1 Mon Sep 17 00:00:00 2001 From: drvxor Date: Sun, 23 Aug 2026 13:43:47 +0300 Subject: [PATCH] Clean config.zig --- src/config.zig | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/config.zig b/src/config.zig index 36c19d3..a0225e9 100644 --- a/src/config.zig +++ b/src/config.zig @@ -1,12 +1 @@ pub const prompt = "xsh> "; - -pub const max_input_size = 4096; -pub const max_script_size = 16 * 1024 * 1024; -pub const max_exec_args = 64; - -pub const features = .{ - .luau = true, - .aliases = false, - .history = false, - .autocomplete = false -};