mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-10-05 01:16:33 +00:00
website: ich split multi-cell
This commit is contained in:
@@ -1620,7 +1620,9 @@ pub fn insertBlanks(self: *Terminal, count: usize) void {
|
||||
while (i < copyable) : (i += 1) {
|
||||
const to = right_limit - 1 - i;
|
||||
const from = copyable_end - i;
|
||||
row.getCellPtr(to).* = row.getCell(from);
|
||||
const src = row.getCell(from);
|
||||
const dst = row.getCellPtr(to);
|
||||
dst.* = src;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user