39 lines
1.4 KiB
Zig
39 lines
1.4 KiB
Zig
const std = @import("std");
|
|
const tp = @import("thespian");
|
|
const root = @import("soft_root").root;
|
|
const command = @import("command");
|
|
const project_manager = @import("project_manager");
|
|
|
|
const tui = @import("../../tui.zig");
|
|
|
|
pub const Type = @import("file_browser.zig").Create(@This());
|
|
|
|
pub const create = Type.create;
|
|
|
|
pub fn load_entries(self: *Type) !void {
|
|
const editor = tui.get_active_editor() orelse return;
|
|
try self.file_path.appendSlice(self.allocator, editor.file_path orelse "");
|
|
if (editor.get_primary().selection) |sel| ret: {
|
|
const text = editor.get_selection(sel, self.allocator) catch break :ret;
|
|
defer self.allocator.free(text);
|
|
if (!(text.len > 2 and std.mem.eql(u8, text[0..2], "..")))
|
|
self.file_path.clearRetainingCapacity();
|
|
try self.file_path.appendSlice(self.allocator, text);
|
|
}
|
|
}
|
|
|
|
pub fn name(_: *Type) []const u8 {
|
|
return " save as";
|
|
}
|
|
|
|
pub fn select(self: *Type) void {
|
|
{
|
|
var buf: std.ArrayList(u8) = .empty;
|
|
defer buf.deinit(self.allocator);
|
|
const file_path = project_manager.expand_home(self.allocator, &buf, self.file_path.items);
|
|
if (root.is_directory(file_path)) return;
|
|
if (file_path.len > 0)
|
|
tp.self_pid().send(.{ "cmd", "save_file_as", .{file_path} }) catch {};
|
|
}
|
|
command.executeName("exit_mini_mode", .{}) catch {};
|
|
}
|