From f2049694c8ef503f5c06e5f05c9e83cae402696a Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 9 Sep 2018 07:38:38 -0700 Subject: [PATCH] Make the DOM renderer stable Also updated the list of features which are not supported now. Note that this may be moved to an addon eventually, this can be part of a major release rather than included in the comment. Fixes #1671 --- typings/xterm.d.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 80b41db5c3..cc1ebcd9e3 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -144,19 +144,14 @@ declare module 'xterm' { macOptionClickForcesSelection?: boolean; /** - * (EXPERIMENTAL) The type of renderer to use, this allows using the - * fallback DOM renderer when canvas is too slow for the environment. The - * following features do not work when the DOM renderer is used: + * The type of renderer to use, this allows using the fallback DOM renderer + * when canvas is too slow for the environment. The following features do + * not work when the DOM renderer is used: * - * - Links + * - Link underlines * - Line height * - Letter spacing * - Cursor blink - * - Cursor style - * - * This option is marked as experiemental because it will eventually be - * moved to an addon. You can only set this option in the constructor (not - * setOption). */ rendererType?: RendererType;