Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xterm audit: cursor position report (CPR) #688

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/termio/Exec.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1611,8 +1611,7 @@ const StreamHandler = struct {
x: usize,
y: usize,
} = if (self.terminal.modes.get(.origin)) .{
// TODO: what do we do if cursor is outside scrolling region?
.x = self.terminal.screen.cursor.x,
.x = self.terminal.screen.cursor.x -| self.terminal.scrolling_region.left,
.y = self.terminal.screen.cursor.y -| self.terminal.scrolling_region.top,
} else .{
.x = self.terminal.screen.cursor.x,
Expand Down
46 changes: 46 additions & 0 deletions website/app/vt/dsr/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import VTSequence from "@/components/VTSequence";

# Device Status Report (DSR)

<VTSequence sequence={["CSI", "Pn", "n"]} />

Request information from the terminal depending on the value of `n`.

The possible valid values of `n` are described in the paragraphs below. If
any other value of `n` is provided, this sequence does nothing.

If `n = 5`, the _operating status_ is requested. The terminal responds
to the program with `ESC [ 0 n` to indicate no malfunctions.

If `n = 6`, the _cursor position_ is requested. The terminal responds to
the program in the format `ESC [ y ; x R` where `y` is the row and `x`
is the column, both one-indexed. If [origin mode (DEC Mode 6)](/vt/modes/origin)
is enabled, the reported cursor position is relative to the top-left of the
scroll region.

## Validation

### DSR V-1: Operating Status

```bash
printf "\033[1;1H" # move to top-left
printf "\033[0J" # clear screen
printf "\033[5n"
```

```
|^[[0n_____|
```

### DSR V-2: Cursor Position

```bash
printf "\033[1;1H" # move to top-left
printf "\033[0J" # clear screen
printf "\033[2;4H" # move to top-left
printf "\033[6n"
```

```
^[[2;4R
```