Compare commits
No commits in common. "00bbeaedf94f0ad83a1824d73d7dd6774f4050d9" and "50c04d3937c643b641d48521aa3dc170c913ac52" have entirely different histories.
00bbeaedf9
...
50c04d3937
2 changed files with 4 additions and 42 deletions
|
|
@ -579,33 +579,10 @@ const cmds = struct {
|
||||||
}
|
}
|
||||||
pub const create_new_file_meta: Meta = .{ .description = "New file" };
|
pub const create_new_file_meta: Meta = .{ .description = "New file" };
|
||||||
|
|
||||||
pub fn save_buffer(self: *Self, ctx: Ctx) Result {
|
|
||||||
var file_path: []const u8 = undefined;
|
|
||||||
if (!(ctx.args.match(.{tp.extract(&file_path)}) catch false))
|
|
||||||
return error.InvalidSaveBufferArgument;
|
|
||||||
|
|
||||||
const buffer = self.buffer_manager.get_buffer_for_file(file_path) orelse return;
|
|
||||||
|
|
||||||
if (self.get_active_editor()) |editor| blk: {
|
|
||||||
const editor_buffer = editor.buffer orelse break :blk;
|
|
||||||
if (buffer == editor_buffer) {
|
|
||||||
try editor.save_file(.{});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const logger = log.logger("buffer");
|
|
||||||
defer logger.deinit();
|
|
||||||
if (buffer.is_ephemeral()) return logger.print_err("save", "ephemeral buffer, use save as", .{});
|
|
||||||
if (!buffer.is_dirty()) return logger.print("no changes to save", .{});
|
|
||||||
try buffer.store_to_file_and_clean(file_path);
|
|
||||||
}
|
|
||||||
pub const save_buffer_meta: Meta = .{ .arguments = &.{.string} };
|
|
||||||
|
|
||||||
pub fn save_file_as(self: *Self, ctx: Ctx) Result {
|
pub fn save_file_as(self: *Self, ctx: Ctx) Result {
|
||||||
var file_path: []const u8 = undefined;
|
var file_path: []const u8 = undefined;
|
||||||
if (!(ctx.args.match(.{tp.extract(&file_path)}) catch false))
|
if (!(ctx.args.match(.{tp.extract(&file_path)}) catch false))
|
||||||
return error.InvalidSaveFileAsArgument;
|
return error.InvalidSafeFileAsArgument;
|
||||||
|
|
||||||
if (self.get_active_editor()) |editor| {
|
if (self.get_active_editor()) |editor| {
|
||||||
const buffer = editor.buffer orelse return;
|
const buffer = editor.buffer orelse return;
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,6 @@ const @"style.config" = struct {
|
||||||
dirty_indicator_fg: ?colors = null,
|
dirty_indicator_fg: ?colors = null,
|
||||||
close_icon: []const u8 = "",
|
close_icon: []const u8 = "",
|
||||||
close_icon_fg: colors = .Error,
|
close_icon_fg: colors = .Error,
|
||||||
save_icon: []const u8 = "",
|
|
||||||
save_icon_fg: ?colors = null,
|
|
||||||
|
|
||||||
spacer: []const u8 = "|",
|
spacer: []const u8 = "|",
|
||||||
spacer_fg: colors = .active_bg,
|
spacer_fg: colors = .active_bg,
|
||||||
|
|
@ -327,7 +325,6 @@ const Tab = struct {
|
||||||
buffer_ref: usize,
|
buffer_ref: usize,
|
||||||
tab_style: *const Style,
|
tab_style: *const Style,
|
||||||
close_pos: ?c_uint = null,
|
close_pos: ?c_uint = null,
|
||||||
save_pos: ?c_uint = null,
|
|
||||||
|
|
||||||
const Mode = enum { active, inactive, selected };
|
const Mode = enum { active, inactive, selected };
|
||||||
|
|
||||||
|
|
@ -359,10 +356,6 @@ const Tab = struct {
|
||||||
tp.self_pid().send(.{ "cmd", "close_buffer", .{buffer.get_file_path()} }) catch {};
|
tp.self_pid().send(.{ "cmd", "close_buffer", .{buffer.get_file_path()} }) catch {};
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
if (self.save_pos) |save_pos| if (pos.col == save_pos) {
|
|
||||||
tp.self_pid().send(.{ "cmd", "save_buffer", .{buffer.get_file_path()} }) catch {};
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
tp.self_pid().send(.{ "cmd", "navigate", .{ .file = buffer.get_file_path() } }) catch {};
|
tp.self_pid().send(.{ "cmd", "navigate", .{ .file = buffer.get_file_path() } }) catch {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -505,18 +498,10 @@ const Tab = struct {
|
||||||
_ = btn.plane.putstr(btn.opts.label) catch {};
|
_ = btn.plane.putstr(btn.opts.label) catch {};
|
||||||
_ = btn.plane.putstr(" ") catch {};
|
_ = btn.plane.putstr(" ") catch {};
|
||||||
self.close_pos = null;
|
self.close_pos = null;
|
||||||
self.save_pos = null;
|
|
||||||
if (btn.hover) {
|
if (btn.hover) {
|
||||||
if (is_dirty) {
|
|
||||||
if (self.tab_style.save_icon_fg) |color|
|
|
||||||
btn.plane.set_style(.{ .fg = color.from_theme(theme) });
|
|
||||||
self.save_pos = btn.plane.cursor_x();
|
|
||||||
_ = btn.plane.putstr(self.tabbar.tab_style.save_icon) catch {};
|
|
||||||
} else {
|
|
||||||
btn.plane.set_style(.{ .fg = self.tab_style.close_icon_fg.from_theme(theme) });
|
btn.plane.set_style(.{ .fg = self.tab_style.close_icon_fg.from_theme(theme) });
|
||||||
self.close_pos = btn.plane.cursor_x();
|
self.close_pos = btn.plane.cursor_x();
|
||||||
_ = btn.plane.putstr(self.tabbar.tab_style.close_icon) catch {};
|
_ = btn.plane.putstr(self.tabbar.tab_style.close_icon) catch {};
|
||||||
}
|
|
||||||
} else if (is_dirty) {
|
} else if (is_dirty) {
|
||||||
if (self.tab_style.dirty_indicator_fg) |color|
|
if (self.tab_style.dirty_indicator_fg) |color|
|
||||||
btn.plane.set_style(.{ .fg = color.from_theme(theme) });
|
btn.plane.set_style(.{ .fg = color.from_theme(theme) });
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue