Skip to content

Commit d7364fa

Browse files
authored
Update src/common/buffer/BufferReflow.ts
1 parent ae2622e commit d7364fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/buffer/BufferReflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface INewLayoutResult {
2222
* @param nullCell The cell data to use when filling in empty cells.
2323
* @param reflowCursorLine Whether to reflow the line containing the cursor.
2424
*/
25-
export function reflowLargerGetLinesToRemove(lines: CircularList<IBufferLine>, oldCols: number, newCols: number, bufferAbsoluteY: number, nullCell: ICellData,reflowCursorLine: boolean): number[] {
25+
export function reflowLargerGetLinesToRemove(lines: CircularList<IBufferLine>, oldCols: number, newCols: number, bufferAbsoluteY: number, nullCell: ICellData, reflowCursorLine: boolean): number[] {
2626
// Gather all BufferLines that need to be removed from the Buffer here so that they can be
2727
// batched up and only committed once
2828
const toRemove: number[] = [];

0 commit comments

Comments
 (0)