From cbf74196018fe7449c3cc4222a0aecea4144e344 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 16 Mar 2018 17:24:04 -0700 Subject: [PATCH] Flag markers and addMarker as experimental --- typings/xterm.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 0d6e422d..ea22b076 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -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;