We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c72a66 + dac2da0 commit 974c721Copy full SHA for 974c721
typings/xterm.d.ts
@@ -325,7 +325,8 @@ declare module 'xterm' {
325
326
/**
327
* Represents a specific line in the terminal that is tracked when scrollback
328
- * is trimmed and lines are added or removed.
+ * is trimmed and lines are added or removed. This is a single line that may
329
+ * be part of a larger wrapped line.
330
*/
331
export interface IMarker extends IDisposable {
332
@@ -339,7 +340,8 @@ declare module 'xterm' {
339
340
readonly isDisposed: boolean;
341
342
- * The actual line index in the buffer at this point in time.
343
+ * The actual line index in the buffer at this point in time. This is set to
344
+ * -1 if the marker has been disposed.
345
346
readonly line: number;
347
}
0 commit comments