From a966f7d591652ba496843f1c9c072265167882b9 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sun, 28 Dec 2025 13:41:21 -0800 Subject: [PATCH] Explain idle in cursorBlink option --- typings/xterm-headless.d.ts | 4 +++- typings/xterm.d.ts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/typings/xterm-headless.d.ts b/typings/xterm-headless.d.ts index 26f970f1..b3d94ed2 100644 --- a/typings/xterm-headless.d.ts +++ b/typings/xterm-headless.d.ts @@ -49,7 +49,9 @@ declare module '@xterm/headless' { convertEol?: boolean; /** - * Whether the cursor blinks. + * Whether the cursor blinks. The blinking will stop after 5 minutes of idle + * time (refreshed by clicking, focusing or the cursor moving). The default + * is false. */ cursorBlink?: boolean; diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 8e34a00e..7bfba9c8 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -58,7 +58,9 @@ declare module '@xterm/xterm' { convertEol?: boolean; /** - * Whether the cursor blinks. + * Whether the cursor blinks. The blinking will stop after 5 minutes of idle + * time (refreshed by clicking, focusing or the cursor moving). The default + * is false. */ cursorBlink?: boolean;