Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.2

This commit is contained in:
Daniel Imms
2024-04-21 07:54:45 -07:00
committed by GitHub
+5 -3
View File
@@ -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 termios 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;