feat: add clipboard history support for internal clipboard

This commit is contained in:
CJ van den Berg 2025-10-13 19:47:20 +02:00
parent 276f721456
commit ee34131ab2
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 161 additions and 247 deletions

View file

@ -2580,20 +2580,6 @@ pub const Editor = struct {
} }
pub const scroll_view_bottom_meta: Meta = .{}; pub const scroll_view_bottom_meta: Meta = .{};
fn set_clipboard(self: *Self, text: []const u8) void {
tui.set_clipboard(text);
if (builtin.os.tag == .windows) {
@import("renderer").copy_to_windows_clipboard(text) catch |e|
self.logger.print_err("clipboard", "failed to set clipboard: {any}", .{e});
} else {
tui.rdr().copy_to_system_clipboard(text);
}
}
pub fn set_clipboard_internal(_: *Self, text: []const u8) void {
tui.set_clipboard(text);
}
pub fn copy_selection(root: Buffer.Root, sel: Selection, text_allocator: Allocator, metrics: Buffer.Metrics) ![]u8 { pub fn copy_selection(root: Buffer.Root, sel: Selection, text_allocator: Allocator, metrics: Buffer.Metrics) ![]u8 {
var size: usize = 0; var size: usize = 0;
_ = try root.get_range(sel, null, &size, null, metrics); _ = try root.get_range(sel, null, &size, null, metrics);
@ -2652,72 +2638,43 @@ pub const Editor = struct {
return root_; return root_;
} }
pub fn cut_to(self: *Self, move: cursor_operator_const, root_: Buffer.Root, text_allocator: Allocator) !struct { []const u8, Buffer.Root } { pub fn cut_to(self: *Self, move: cursor_operator_const, root_: Buffer.Root) !Buffer.Root {
var all_stop = true; var all_stop = true;
var root = root_; var root = root_;
var text = std.ArrayListUnmanaged(u8).empty;
defer text.deinit(text_allocator);
var first = true;
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
if (cursel.selection) |_| { if (cursel.selection) |_| {
const cut_text, root = self.cut_selection(root, cursel, text_allocator) catch continue; const cut_text, root = self.cut_selection(root, cursel, tui.clipboard_allocator()) catch continue;
defer text_allocator.free(cut_text); tui.clipboard_add_chunk(cut_text);
all_stop = false; all_stop = false;
if (first) {
first = false;
} else {
try text.appendSlice(text_allocator, "\n");
}
try text.appendSlice(text_allocator, cut_text);
continue; continue;
} }
with_selection_const(root, move, cursel, self.metrics) catch continue; with_selection_const(root, move, cursel, self.metrics) catch continue;
const cut_text, root = self.cut_selection(root, cursel, text_allocator) catch continue; const cut_text, root = self.cut_selection(root, cursel, tui.clipboard_allocator()) catch continue;
defer text_allocator.free(cut_text); tui.clipboard_add_chunk(cut_text);
if (first) {
first = false;
} else {
try text.appendSlice(text_allocator, "\n");
}
try text.appendSlice(text_allocator, cut_text);
all_stop = false; all_stop = false;
}; };
if (all_stop) return if (all_stop) error.Stop else root;
return error.Stop;
return .{ try text.toOwnedSlice(text_allocator), root };
} }
pub fn cut_internal_vim(self: *Self, _: Context) Result { pub fn cut_internal_vim(self: *Self, _: Context) Result {
const primary = self.get_primary(); const primary = self.get_primary();
const b = self.buf_for_update() catch return; const b = self.buf_for_update() catch return;
var root = b.root; var root = b.root;
var text = std.ArrayListUnmanaged(u8).empty;
defer text.deinit(self.allocator);
if (self.cursels.items.len == 1) if (self.cursels.items.len == 1)
if (primary.selection) |_| {} else { if (primary.selection) |_| {} else {
try text.appendSlice(self.allocator, "\n");
const sel = primary.enable_selection(root, self.metrics) catch return; const sel = primary.enable_selection(root, self.metrics) catch return;
try move_cursor_begin(root, &sel.begin, self.metrics); try move_cursor_begin(root, &sel.begin, self.metrics);
try move_cursor_end(root, &sel.end, self.metrics); try move_cursor_end(root, &sel.end, self.metrics);
try move_cursor_right(root, &sel.end, self.metrics); try move_cursor_right(root, &sel.end, self.metrics);
}; };
var first = true;
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
const cut_text, root = try self.cut_selection(root, cursel, self.allocator); const cut_text, root = try self.cut_selection(root, cursel, tui.clipboard_allocator());
defer self.allocator.free(cut_text); tui.clipboard_add_chunk(cut_text);
if (first) {
first = false;
} else {
try text.appendSlice(self.allocator, "\n");
}
try text.appendSlice(self.allocator, cut_text);
}; };
try self.update_buf(root); try self.update_buf(root);
self.set_clipboard_internal(try text.toOwnedSlice(self.allocator));
self.clamp(); self.clamp();
} }
pub const cut_internal_vim_meta: Meta = .{ .description = "Cut selection or current line to internal clipboard (vim)" }; pub const cut_internal_vim_meta: Meta = .{ .description = "Cut selection or current line to internal clipboard (vim)" };
@ -2739,31 +2696,21 @@ pub const Editor = struct {
else => return e, else => return e,
}; };
}; };
var first = true; var count: usize = 0;
var text = std.ArrayListUnmanaged(u8).empty;
defer text.deinit(self.allocator);
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
const cut_text, root = try self.cut_selection(root, cursel, self.allocator); count += 1;
defer self.allocator.free(cut_text); const cut_text, root = try self.cut_selection(root, cursel, tui.clipboard_allocator());
if (first) { tui.clipboard_add_chunk(cut_text);
first = false;
} else {
try text.appendSlice(self.allocator, "\n");
}
try text.appendSlice(self.allocator, cut_text);
}; };
try self.update_buf(root); try self.update_buf(root);
self.set_clipboard(try text.toOwnedSlice(self.allocator));
self.clamp(); self.clamp();
try tui.clipboard_send_to_system(count);
} }
pub const cut_meta: Meta = .{ .description = "Cut selection or current line to clipboard" }; pub const cut_meta: Meta = .{ .description = "Cut selection or current line to clipboard" };
pub fn copy(self: *Self, _: Context) Result { pub fn copy(self: *Self, _: Context) Result {
const primary = self.get_primary(); const primary = self.get_primary();
const root = self.buf_root() catch return; const root = self.buf_root() catch return;
var first = true;
var text = std.ArrayListUnmanaged(u8).empty;
defer text.deinit(self.allocator);
if (self.cursels.items.len == 1) if (self.cursels.items.len == 1)
if (primary.selection) |_| {} else { if (primary.selection) |_| {} else {
const sel = primary.enable_selection(root, self.metrics) catch return; const sel = primary.enable_selection(root, self.metrics) catch return;
@ -2771,46 +2718,26 @@ pub const Editor = struct {
try move_cursor_end(root, &sel.end, self.metrics); try move_cursor_end(root, &sel.end, self.metrics);
try move_cursor_right(root, &sel.end, self.metrics); try move_cursor_right(root, &sel.end, self.metrics);
}; };
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { var count: usize = 0;
if (cursel.selection) |sel| { for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| if (cursel.selection) |sel| {
const copy_text = try copy_selection(root, sel, self.allocator, self.metrics); count += 1;
defer self.allocator.free(copy_text); tui.clipboard_add_chunk(try copy_selection(root, sel, tui.clipboard_allocator(), self.metrics));
if (first) {
first = false;
} else {
try text.appendSlice(self.allocator, "\n");
}
try text.appendSlice(self.allocator, copy_text);
}
}; };
if (text.items.len > 0) { return tui.clipboard_send_to_system(count);
if (text.items.len > 100) {
self.logger.print("copy:{f}...", .{std.ascii.hexEscape(text.items[0..100], .lower)});
} else {
self.logger.print("copy:{f}", .{std.ascii.hexEscape(text.items, .lower)});
}
self.set_clipboard(try text.toOwnedSlice(self.allocator));
}
} }
pub const copy_meta: Meta = .{ .description = "Copy selection to clipboard" }; pub const copy_meta: Meta = .{ .description = "Copy selection to clipboard" };
fn copy_cursel_file_name( fn copy_cursel_file_name(self: *const Self) error{OutOfMemory}!usize {
self: *const Self, tui.clipboard_add_chunk(try tui.clipboard_allocator().dupe(u8, self.file_path orelse "*"));
writer: *std.Io.Writer, return 1;
) Result {
if (self.file_path) |file_path|
try writer.writeAll(file_path)
else
try writer.writeByte('*');
} }
fn copy_cursel_file_name_and_location( fn copy_cursel_file_name_and_location(self: *const Self, cursel: *const CurSel) error{ WriteFailed, OutOfMemory }!void {
self: *const Self, var buffer: std.Io.Writer.Allocating = .init(tui.clipboard_allocator());
cursel: *const CurSel, defer buffer.deinit();
writer: *std.Io.Writer, const writer = &buffer.writer;
) Result {
try self.copy_cursel_file_name(writer); try writer.writeAll(self.file_path orelse "*");
if (cursel.selection) |sel_| { if (cursel.selection) |sel_| {
var sel = sel_; var sel = sel_;
sel.normalize(); sel.normalize();
@ -2831,34 +2758,27 @@ pub const Editor = struct {
try writer.print(":{d}:{d}", .{ cursel.cursor.row + 1, cursel.cursor.col + 1 }) try writer.print(":{d}:{d}", .{ cursel.cursor.row + 1, cursel.cursor.col + 1 })
else else
try writer.print(":{d}", .{cursel.cursor.row + 1}); try writer.print(":{d}", .{cursel.cursor.row + 1});
tui.clipboard_add_chunk(try buffer.toOwnedSlice());
}
fn copy_cursels_file_name_and_location(self: *const Self) error{OutOfMemory}!usize {
var count: usize = 0;
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
count += 1;
self.copy_cursel_file_name_and_location(cursel) catch return error.OutOfMemory;
};
return count;
} }
pub fn copy_file_name(self: *Self, ctx: Context) Result { pub fn copy_file_name(self: *Self, ctx: Context) Result {
var mode: enum { all, primary_only, file_name_only } = .all; var mode: enum { all, file_name_only } = .all;
_ = ctx.args.match(.{tp.extract(&mode)}) catch false; _ = ctx.args.match(.{tp.extract(&mode)}) catch false;
var buffer: std.Io.Writer.Allocating = .init(self.allocator); const n = switch (mode) {
defer buffer.deinit(); .file_name_only => try self.copy_cursel_file_name(),
const writer = &buffer.writer; .all => try self.copy_cursels_file_name_and_location(),
var first = true; };
switch (mode) { return tui.clipboard_send_to_system(n);
.file_name_only => try self.copy_cursel_file_name(writer),
.primary_only => try self.copy_cursel_file_name_and_location(
self.get_primary(),
writer,
),
else => for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
if (first) first = false else try writer.writeByte('\n');
try self.copy_cursel_file_name_and_location(cursel, writer);
},
}
const text = try buffer.toOwnedSlice();
if (text.len > 0) {
if (text.len > 100)
self.logger.print("copy:{f}...", .{std.ascii.hexEscape(text[0..100], .lower)})
else
self.logger.print("copy:{f}", .{std.ascii.hexEscape(text, .lower)});
self.set_clipboard(text);
}
} }
pub const copy_file_name_meta: Meta = .{ pub const copy_file_name_meta: Meta = .{
.description = "Copy file name and location to clipboard", .description = "Copy file name and location to clipboard",
@ -2866,97 +2786,51 @@ pub const Editor = struct {
pub fn copy_internal_vim(self: *Self, _: Context) Result { pub fn copy_internal_vim(self: *Self, _: Context) Result {
const root = self.buf_root() catch return; const root = self.buf_root() catch return;
var first = true; for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| if (cursel.selection) |sel|
var text = std.ArrayListUnmanaged(u8).empty; tui.clipboard_add_chunk(try copy_selection(root, sel, tui.clipboard_allocator(), self.metrics));
defer text.deinit(self.allocator);
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
if (cursel.selection) |sel| {
const copy_text = try copy_selection(root, sel, self.allocator, self.metrics);
defer self.allocator.free(copy_text);
if (first) {
first = false;
} else {
try text.appendSlice(self.allocator, "\n");
}
try text.appendSlice(self.allocator, copy_text);
}
};
if (text.items.len > 0) {
if (text.items.len > 100) {
self.logger.print("copy:{f}...", .{std.ascii.hexEscape(text.items[0..100], .lower)});
} else {
self.logger.print("copy:{f}", .{std.ascii.hexEscape(text.items, .lower)});
}
self.set_clipboard_internal(try text.toOwnedSlice(self.allocator));
}
} }
pub const copy_internal_vim_meta: Meta = .{ .description = "Copy selection to internal clipboard (vim)" }; pub const copy_internal_vim_meta: Meta = .{ .description = "Copy selection to internal clipboard (vim)" };
pub fn copy_line_internal_vim(self: *Self, _: Context) Result { pub fn copy_line_internal_vim(self: *Self, _: Context) Result {
const primary = self.get_primary(); const primary = self.get_primary();
const root = self.buf_root() catch return; const root = self.buf_root() catch return;
var first = true;
var text = std.ArrayListUnmanaged(u8).empty;
defer text.deinit(self.allocator);
try text.appendSlice(self.allocator, "\n");
if (primary.selection) |_| {} else { if (primary.selection) |_| {} else {
const sel = primary.enable_selection(root, self.metrics) catch return; const sel = primary.enable_selection(root, self.metrics) catch return;
try move_cursor_begin(root, &sel.begin, self.metrics); try move_cursor_begin(root, &sel.begin, self.metrics);
try move_cursor_end(root, &sel.end, self.metrics); try move_cursor_end(root, &sel.end, self.metrics);
try move_cursor_right(root, &sel.end, self.metrics); try move_cursor_right(root, &sel.end, self.metrics);
} }
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| if (cursel.selection) |sel|
if (cursel.selection) |sel| { tui.clipboard_add_chunk(try copy_selection(root, sel, tui.clipboard_allocator(), self.metrics));
const copy_text = try copy_selection(root, sel, self.allocator, self.metrics);
defer self.allocator.free(copy_text);
if (first) {
first = false;
} else {
try text.appendSlice(self.allocator, "\n");
}
try text.appendSlice(self.allocator, copy_text);
}
};
if (text.items.len > 0) {
if (text.items.len > 100) {
self.logger.print("copy:{f}...", .{std.ascii.hexEscape(text.items[0..100], .lower)});
} else {
self.logger.print("copy:{f}", .{std.ascii.hexEscape(text.items, .lower)});
}
self.set_clipboard_internal(try text.toOwnedSlice(self.allocator));
}
} }
pub const copy_line_internal_vim_meta: Meta = .{ .description = "Copy line to internal clipboard (vim)" }; pub const copy_line_internal_vim_meta: Meta = .{ .description = "Copy line to internal clipboard (vim)" };
pub fn paste(self: *Self, ctx: Context) Result { pub fn paste(self: *Self, ctx: Context) Result {
var text: []const u8 = undefined; var text_: []const u8 = undefined;
if (!(ctx.args.buf.len > 0 and try ctx.args.match(.{tp.extract(&text)}))) { const clipboard: []const []const u8 = if (ctx.args.buf.len > 0 and try ctx.args.match(.{tp.extract(&text_)}))
if (tui.get_clipboard()) |text_| text = text_ else return; &[_][]const u8{text_}
} else
self.logger.print("paste: {d} bytes", .{text.len}); tui.clipboard_get_history() orelse return;
const b = try self.buf_for_update(); const b = try self.buf_for_update();
var root = b.root; var root = b.root;
if (self.cursels.items.len == 1) {
const primary = self.get_primary(); var bytes: usize = 0;
root = try self.insert(root, primary, text, b.allocator); var cursel_idx = self.cursels.items.len - 1;
} else { var idx = clipboard.len - 1;
if (std.mem.indexOfScalar(u8, text, '\n')) |_| { while (true) {
var pos: usize = 0; const cursel_ = &self.cursels.items[cursel_idx];
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { if (cursel_.*) |*cursel| {
if (std.mem.indexOfScalarPos(u8, text, pos, '\n')) |next| { const text = clipboard[idx];
root = try self.insert(root, cursel, text[pos..next], b.allocator); root = try self.insert(root, cursel, text, b.allocator);
pos = next + 1; idx = if (idx == 0) clipboard.len - 1 else idx - 1;
} else { bytes += text.len;
root = try self.insert(root, cursel, text[pos..], b.allocator);
pos = 0;
}
};
} else {
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
root = try self.insert(root, cursel, text, b.allocator);
};
} }
if (cursel_idx == 0) break;
cursel_idx -= 1;
} }
self.logger.print("paste: {d} bytes", .{bytes});
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
self.need_render(); self.need_render();
@ -2964,43 +2838,30 @@ pub const Editor = struct {
pub const paste_meta: Meta = .{ .description = "Paste from internal clipboard" }; pub const paste_meta: Meta = .{ .description = "Paste from internal clipboard" };
pub fn paste_internal_vim(self: *Self, ctx: Context) Result { pub fn paste_internal_vim(self: *Self, ctx: Context) Result {
var text: []const u8 = undefined; var text_: []const u8 = undefined;
if (!(ctx.args.buf.len > 0 and try ctx.args.match(.{tp.extract(&text)}))) { const clipboard: []const []const u8 = if (ctx.args.buf.len > 0 and try ctx.args.match(.{tp.extract(&text_)}))
if (tui.get_clipboard()) |text_| text = text_ else return; &[_][]const u8{text_}
} else
tui.clipboard_get_history() orelse return;
self.logger.print("paste: {d} bytes", .{text.len});
const b = try self.buf_for_update(); const b = try self.buf_for_update();
var root = b.root; var root = b.root;
if (std.mem.eql(u8, text[text.len - 1 ..], "\n")) text = text[0 .. text.len - 1]; var bytes: usize = 0;
var cursel_idx = self.cursels.items.len - 1;
if (std.mem.indexOfScalar(u8, text, '\n')) |idx| { var idx = clipboard.len - 1;
if (idx == 0) { while (true) {
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { const cursel_ = &self.cursels.items[cursel_idx];
try move_cursor_end(root, &cursel.cursor, self.metrics); if (cursel_.*) |*cursel| {
root = try self.insert(root, cursel, "\n", b.allocator); const text = clipboard[idx];
}; root = try self.insert_line_vim(root, cursel, text, b.allocator);
text = text[1..]; idx = if (idx == 0) clipboard.len - 1 else idx - 1;
} bytes += text.len;
if (self.cursels.items.len == 1) {
const primary = self.get_primary();
root = try self.insert_line_vim(root, primary, text, b.allocator);
} else {
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
root = try self.insert_line_vim(root, cursel, text, b.allocator);
};
}
} else {
if (self.cursels.items.len == 1) {
const primary = self.get_primary();
root = try self.insert(root, primary, text, b.allocator);
} else {
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
root = try self.insert(root, cursel, text, b.allocator);
};
} }
if (cursel_idx == 0) break;
cursel_idx -= 1;
} }
self.logger.print("paste: {d} bytes", .{bytes});
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
@ -3018,8 +2879,7 @@ pub const Editor = struct {
pub fn cut_forward_internal(self: *Self, _: Context) Result { pub fn cut_forward_internal(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_right, b.root, self.allocator); const root = try self.cut_to(move_cursor_right, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }
@ -3102,8 +2962,7 @@ pub const Editor = struct {
pub fn cut_buffer_end(self: *Self, _: Context) Result { pub fn cut_buffer_end(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_buffer_end, b.root, self.allocator); const root = try self.cut_to(move_cursor_buffer_end, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }
@ -3111,8 +2970,7 @@ pub const Editor = struct {
pub fn cut_buffer_begin(self: *Self, _: Context) Result { pub fn cut_buffer_begin(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_buffer_begin, b.root, self.allocator); const root = try self.cut_to(move_cursor_buffer_begin, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }
@ -3120,8 +2978,7 @@ pub const Editor = struct {
pub fn cut_word_left_vim(self: *Self, _: Context) Result { pub fn cut_word_left_vim(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_word_left_vim, b.root, self.allocator); const root = try self.cut_to(move_cursor_word_left_vim, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }
@ -3137,8 +2994,7 @@ pub const Editor = struct {
pub fn cut_word_right_vim(self: *Self, _: Context) Result { pub fn cut_word_right_vim(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_word_right_vim, b.root, self.allocator); const root = try self.cut_to(move_cursor_word_right_vim, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }
@ -3162,8 +3018,7 @@ pub const Editor = struct {
pub fn cut_to_end_vim(self: *Self, _: Context) Result { pub fn cut_to_end_vim(self: *Self, _: Context) Result {
const b = try self.buf_for_update(); const b = try self.buf_for_update();
const text, const root = try self.cut_to(move_cursor_end_vim, b.root, self.allocator); const root = try self.cut_to(move_cursor_end_vim, b.root);
self.set_clipboard_internal(text);
try self.update_buf(root); try self.update_buf(root);
self.clamp(); self.clamp();
} }

View file

@ -75,7 +75,7 @@ fontfaces_: std.ArrayListUnmanaged([]const u8) = .{},
enable_mouse_idle_timer: bool = false, enable_mouse_idle_timer: bool = false,
query_cache_: *syntax.QueryCache, query_cache_: *syntax.QueryCache,
frames_rendered_: usize = 0, frames_rendered_: usize = 0,
clipboard: ?[]const u8 = null, clipboard: ?std.ArrayList([]const u8) = null,
color_scheme: enum { dark, light } = .dark, color_scheme: enum { dark, light } = .dark,
color_scheme_locked: bool = false, color_scheme_locked: bool = false,
@ -270,7 +270,7 @@ fn deinit(self: *Self) void {
self.logger.deinit(); self.logger.deinit();
self.query_cache_.deinit(); self.query_cache_.deinit();
root.free_config(self.allocator, self.config_bufs); root.free_config(self.allocator, self.config_bufs);
if (self.clipboard) |text| self.allocator.free(text); self.clipboard_deinit();
self.allocator.destroy(self); self.allocator.destroy(self);
} }
@ -1767,14 +1767,73 @@ fn widget_type_config_variable(widget_type: WidgetType) *ConfigWidgetStyle {
}; };
} }
pub fn get_clipboard() ?[]const u8 { fn clipboard_deinit(self: *Self) void {
const self = current(); if (self.clipboard) |*clipboard| {
return self.clipboard; for (clipboard.items) |chunk|
self.allocator.free(chunk);
clipboard.deinit(self.allocator);
}
self.clipboard = null;
} }
pub fn set_clipboard(text: []const u8) void { pub fn clipboard_allocator() Allocator {
const self = current(); const self = current();
if (self.clipboard) |old| return self.allocator;
self.allocator.free(old); }
self.clipboard = text;
pub fn clipboard_get_history() ?[]const []const u8 {
const self = current();
return if (self.clipboard) |clipboard| clipboard.items else null;
}
pub fn clipboard_peek_chunk() ?[]const u8 {
const self = current();
const clipboard = self.clipboard orelse return null;
return clipboard[clipboard.len - 1];
}
pub fn clipboard_clear_all() void {
const self = current();
self.clipboard_deinit();
}
pub fn clipboard_add_chunk(text: []const u8) void {
const self = current();
const clipboard = if (self.clipboard) |*clipboard| clipboard else blk: {
self.clipboard = .empty;
break :blk &self.clipboard.?;
};
const chunk = clipboard.addOne(self.allocator) catch @panic("OOM clipboard_add_chunk");
chunk.* = text;
}
pub fn clipboard_send_to_system(n_chunks: usize) error{ Stop, WriteFailed }!void {
const self = current();
var buffer: std.Io.Writer.Allocating = .init(self.allocator);
defer buffer.deinit();
const writer = &buffer.writer;
const clipboard = if (self.clipboard) |clipboard| clipboard.items else return error.Stop;
if (clipboard.len < n_chunks) return error.Stop;
if (n_chunks == 1) return self.clipboard_send_to_system_internal(clipboard[clipboard.len - 1]);
var first = true;
const chunks = clipboard[clipboard.len - n_chunks ..];
for (chunks) |chunk| {
if (first) first = false else try writer.writeByte('\n');
try writer.writeAll(chunk);
}
}
fn clipboard_send_to_system_internal(self: *Self, text: []const u8) void {
if (text.len > 0) {
if (text.len > 100)
self.logger.print("copy:{f}...", .{std.ascii.hexEscape(text[0..100], .lower)})
else
self.logger.print("copy:{f}", .{std.ascii.hexEscape(text, .lower)});
}
if (builtin.os.tag == .windows) {
@import("renderer").copy_to_windows_clipboard(text) catch |e|
self.logger.print_err("clipboard", "failed to set clipboard: {any}", .{e});
} else {
self.rdr_.copy_to_system_clipboard(text);
}
} }