Correct @vt docs

This commit is contained in:
Daniel Imms
2024-12-20 10:37:48 -08:00
parent 82598e94a9
commit f824083324
+7 -7
View File
@@ -2724,13 +2724,13 @@ export class InputHandler extends Disposable implements IInputHandler {
*
* @vt: #Y CSI DECSCUSR "Set Cursor Style" "CSI Ps SP q" "Set cursor style."
* Supported cursor styles:
* - empty, 0: reset to option
* - 1: steady block
* - 2: blink block
* - 3: steady underline
* - 4: blink underline
* - 5: steady bar
* - 6: blink bar
* - 0: reset to option
* - empty, 1: blinking block
* - 2: steady block
* - 3: blinking underline
* - 4: steady underline
* - 5: blinking bar
* - 6: steady bar
*/
public setCursorStyle(params: IParams): boolean {
const param = params.length === 0 ? 1 : params.params[0];