fix: editor paste

This commit is contained in:
CJ van den Berg 2024-11-22 13:43:15 +01:00
parent 279789d4fa
commit a9e5c5b262
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
6 changed files with 14 additions and 12 deletions

View file

@ -153,8 +153,8 @@ const cmds = struct {
}
pub const mini_mode_delete_backwards_meta = .{ .description = "Delete backwards" };
pub fn paste(self: *Self, ctx: Ctx) Result {
pub fn mini_mode_paste(self: *Self, ctx: Ctx) Result {
return mini_mode_insert_bytes(self, ctx);
}
pub const paste_meta = .{ .arguments = &.{.string} };
pub const mini_mode_paste_meta = .{ .arguments = &.{.string} };
};