From 9107ee905a66c9a3e22b6ae6f54e8ea87c8616af Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Fri, 16 Feb 2024 18:08:58 -0800 Subject: [PATCH 1/3] Update xterm.d.ts Fix doc typo --- typings/xterm.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index d957d6551d..9ba11bb3bc 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -48,7 +48,7 @@ declare module '@xterm/xterm' { /** * When enabled the cursor will be set to the beginning of the next line * with every new line. This is equivalent to sending '\r\n' for each '\n'. - * Normally the termios settings of the underlying PTY deals with the + * Normally the terminal settings of the underlying PTY deals with the * translation of '\n' to '\r\n' and this setting should not be used. If you * deal with data from a non-PTY related source, this settings might be * useful. From 88bfc4ad9ccba4e4457f84fdb42f832bc04f15c9 Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Mon, 19 Feb 2024 17:18:52 -0800 Subject: [PATCH 2/3] add termios link --- typings/xterm.d.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 9ba11bb3bc..d2fa9f99c7 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -47,11 +47,13 @@ declare module '@xterm/xterm' { /** * When enabled the cursor will be set to the beginning of the next line - * with every new line. This is equivalent to sending '\r\n' for each '\n'. - * Normally the terminal settings of the underlying PTY deals with the - * translation of '\n' to '\r\n' and this setting should not be used. If you + * with every new line. This is equivalent to sending `\r\n` for each `\n`. + * Normally the settings of the underlying PTY (`termios`) deal with the + * translation of `\n` to `\r\n` and this setting should not be used. If you * deal with data from a non-PTY related source, this settings might be * useful. + * + * @see https://pubs.opengroup.org/onlinepubs/007904975/basedefs/termios.h.html */ convertEol?: boolean; From 75491f41526512c4786b1cb3feea0bcf4ca124e1 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sun, 21 Apr 2024 07:42:17 -0700 Subject: [PATCH 3/3] Remove trailing whitespace --- typings/xterm.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 8c92fec82c..b64702757c 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -52,7 +52,7 @@ declare module '@xterm/xterm' { * translation of `\n` to `\r\n` and this setting should not be used. If you * deal with data from a non-PTY related source, this settings might be * useful. - * + * * @see https://pubs.opengroup.org/onlinepubs/007904975/basedefs/termios.h.html */ convertEol?: boolean;