avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+15
View File
@@ -233,6 +233,21 @@ Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assum
*/
export const exitAlternativeScreen: string;
/**
Begin [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) to reduce flicker during renders.
*/
export const beginSynchronizedOutput: string;
/**
End [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/).
*/
export const endSynchronizedOutput: string;
/**
Wrap output in [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) sequences to reduce flicker during renders.
*/
export function synchronizedOutput(text: string): string;
/**
Output a beeping sound.
*/
+4
View File
@@ -132,6 +132,10 @@ export const clearTerminal = isOldWindows()
export const enterAlternativeScreen = ESC + '?1049h';
export const exitAlternativeScreen = ESC + '?1049l';
export const beginSynchronizedOutput = ESC + '?2026h';
export const endSynchronizedOutput = ESC + '?2026l';
export const synchronizedOutput = text => beginSynchronizedOutput + text + endSynchronizedOutput;
export const beep = BEL;
export const link = (text, url) => {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "ansi-escapes",
"version": "7.2.0",
"version": "7.3.0",
"description": "ANSI escape codes for manipulating the terminal",
"license": "MIT",
"repository": "sindresorhus/ansi-escapes",
+12
View File
@@ -159,6 +159,18 @@ Enter the [alternative screen](https://terminalguide.namepad.de/mode/p47/).
Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assuming `enterAlternativeScreen` was called before.
### beginSynchronizedOutput
Begin [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) to reduce flicker during renders.
### endSynchronizedOutput
End [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/).
### synchronizedOutput(text)
Wrap output in [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) sequences to reduce flicker during renders.
### beep
Output a beeping sound.