feat: allow runtime changing of the gutter mode

This commit is contained in:
CJ van den Berg 2024-04-10 22:12:19 +02:00
parent f61701150d
commit 9aea1f54f5
7 changed files with 37 additions and 1 deletions

View file

@ -679,7 +679,7 @@ fn send_input(self: *Self, from: tp.pid_ref, m: tp.message) void {
mode.handler.send(from, m) catch |e| self.logger.err("input handler", e);
}
fn save_config(self: *const Self) !void {
pub fn save_config(self: *const Self) !void {
try root.write_config(self.config, self.a);
}