We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82598e9 commit f824083Copy full SHA for f824083
1 file changed
src/common/InputHandler.ts
@@ -2724,13 +2724,13 @@ export class InputHandler extends Disposable implements IInputHandler {
2724
*
2725
* @vt: #Y CSI DECSCUSR "Set Cursor Style" "CSI Ps SP q" "Set cursor style."
2726
* Supported cursor styles:
2727
- * - empty, 0: reset to option
2728
- * - 1: steady block
2729
- * - 2: blink block
2730
- * - 3: steady underline
2731
- * - 4: blink underline
2732
- * - 5: steady bar
2733
- * - 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
2734
*/
2735
public setCursorStyle(params: IParams): boolean {
2736
const param = params.length === 0 ? 1 : params.params[0];
0 commit comments