From 514e175ef4de48456dde6fa2ef31a3228ab375ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gero=20Schw=C3=A4ricke?= Date: Sat, 1 Mar 2025 21:22:29 +0100 Subject: [PATCH] feat: save file without formatting --- src/tui/editor.zig | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/tui/editor.zig b/src/tui/editor.zig index 8c562b1..8800624 100644 --- a/src/tui/editor.zig +++ b/src/tui/editor.zig @@ -4294,14 +4294,14 @@ pub const Editor = struct { } pub const open_scratch_buffer_meta = .{ .arguments = &.{ .string, .string } }; - pub fn save_file(self: *Self, ctx: Context) Result { + pub fn format_and_save_file(self: *Self, ctx: Context, format_file: bool) Result { var then = false; var cmd: []const u8 = undefined; var args: []const u8 = undefined; if (ctx.args.match(.{ "then", .{ tp.extract(&cmd), tp.extract_cbor(&args) } }) catch false) { then = true; } - if (tui.config().enable_format_on_save) if (self.get_formatter()) |_| { + if (format_file and tui.config().enable_format_on_save) if (self.get_formatter()) |_| { self.need_save_after_filter = .{ .then = if (then) .{ .cmd = cmd, .args = args } else null }; const primary = self.get_primary(); const sel = primary.selection; @@ -4314,8 +4314,17 @@ pub const Editor = struct { if (then) return command.executeName(cmd, .{ .args = .{ .buf = args } }); } + + pub fn save_file(self: *Self, ctx: Context) Result { + return self.format_and_save_file(ctx, true); + } pub const save_file_meta = .{ .description = "Save file" }; + pub fn save_file_without_formatting(self: *Self, ctx: Context) Result { + return self.format_and_save_file(ctx, false); + } + pub const save_file_without_formatting_meta = .{ .description = "Save file without formatting" }; + pub fn save_file_as(self: *Self, ctx: Context) Result { var file_path: []const u8 = undefined; if (ctx.args.match(.{tp.extract(&file_path)}) catch false) {