Flag markers and addMarker as experimental

This commit is contained in:
Daniel Imms
2018-03-16 17:24:04 -07:00
parent 5c1a4a7d01
commit cbf7419601
+4 -4
View File
@@ -272,8 +272,8 @@ declare module 'xterm' {
cols: number;
/**
* Get all markers registered against the buffer. If the alt buffer is
* active this will always return [].
* (EXPERIMENTAL) Get all markers registered against the buffer. If the alt
* buffer is active this will always return [].
*/
markers: IMarker[];
@@ -416,8 +416,8 @@ declare module 'xterm' {
deregisterLinkMatcher(matcherId: number): void;
/**
* Adds a marker to the normal buffer and returns it. If the alt buffer is
* active, undefined is returned.
* (EXPERIMENTAL) Adds a marker to the normal buffer and returns it. If the
* alt buffer is active, undefined is returned.
* @param cursorYOffset The y position offset of the marker from the cursor.
*/
addMarker(cursorYOffset: number): IMarker;