vscode icon indicating copy to clipboard operation
vscode copied to clipboard

NES can freeze renderer

Open benibenj opened this issue 2 weeks ago • 1 comments

When the user gets an insertion many lines above which is rendered as a multi line insertion then scrolling the suggestion manually in view can cause the renderer to freeze

benibenj avatar Dec 10 '25 17:12 benibenj

/* ====== <$.replace> ======
<<class Buffer {
	readonly chunks: [] = ['data'];
}>>
// ======== <$.with /> ========
class Buffer {
	readonly chunks: [] = []; // loooooooooooooooooooooooooooooooooooooooooooong line
	readonly data: [] = ['data'];
}
// ======== </$.replace> ========= */

class Buffer {
	readonly chunks: [] = ['data'];
}
// some more code in the background that might be hidden











// CURSOR HERE and suggestion outside viewport 

benibenj avatar Dec 10 '25 17:12 benibenj