You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm implementing sticky scroll in VS Code (microsoft/vscode#172742) which needs to serialize a particular line. Right now it's rather inefficient as I need to scroll up to the line, not only the line:
// TODO: Serializing all content up to the required line is inefficient; support providing single line/range serialize addonconsts=this._serializeAddon?.serialize({scrollback: this._xterm.raw.buffer.active.baseY-marker.line});if(s){constcontent=s.substring(0,s.indexOf('\r'));
...
}
The text was updated successfully, but these errors were encountered:
Already figured, that the high-level serialize interface is a bit unconventional and limited in pulling certain lines or ranges of lines, while doing that first wasm rewrite. Imho providing a range option (default: full range of lines) is the better idea, yeah.
I'm implementing sticky scroll in VS Code (microsoft/vscode#172742) which needs to serialize a particular line. Right now it's rather inefficient as I need to scroll up to the line, not only the line:
The text was updated successfully, but these errors were encountered: