code style fix

This commit is contained in:
blashaq
2024-11-23 16:59:30 +00:00
parent 92c21a6950
commit 904ddbc884
2 changed files with 9 additions and 7 deletions
+5 -4
View File
@@ -249,11 +249,12 @@ declare module '@xterm/headless' {
*/
windowOptions?: IWindowOptions;
/**
* If enabled ED2 (clear screen) escape sequence will push erased text to scrollback.
* This emulates PuTTY default clear screen behaviour.
/**
* If enabled ED2 (clear screen) escape sequence will push
* erased text to scrollback.
* This emulates PuTTY default clear screen behavior.
*/
scrollOnDisplayErase?: boolean
scrollOnDisplayErase?: boolean;
}
/**
+4 -3
View File
@@ -333,10 +333,11 @@ declare module '@xterm/xterm' {
overviewRuler?: IOverviewRulerOptions;
/**
* If enabled ED2 (clear screen) escape sequence will push erased text to scrollback.
* This emulates PuTTY default clear screen behaviour.
* If enabled ED2 (clear screen) escape sequence will push
* erased text to scrollback.
* This emulates PuTTY default clear screen behavior.
*/
scrollOnDisplayErase?: boolean
scrollOnDisplayErase?: boolean;
}
/**