* CSI Ps G * Cursor Character Absolute [column] (default = [row,1]) (CHA). * * @vt: #Y CSI CHA "Cursor Horizontal Absolute" "CSI Ps G" "Move cursor to `Ps`-th column of the active row (default=1)."
(params: IParams)
| 985 | * @vt: #Y CSI CHA "Cursor Horizontal Absolute" "CSI Ps G" "Move cursor to `Ps`-th column of the active row (default=1)." |
| 986 | */ |
| 987 | public cursorCharAbsolute(params: IParams): boolean { |
| 988 | this._setCursor((params.params[0] || 1) - 1, this._activeBuffer.y); |
| 989 | return true; |
| 990 | } |
| 991 | |
| 992 | /** |
| 993 | * CSI Ps ; Ps H |