Kevin Hovsäter 22b8173164 Fix typos
2023-08-08 14:27:34 +02:00

20 lines
333 B
Markdown

# Backspace
| | |
| --- | --- |
| Text | |
| Hex | `0x08` |
Move the cursor left one cell.
TODO: Details about how this interacts with soft wrapping.
## Implementation Details
* ghostty implements this naively as `cursor.x -|= 1` (`-|=` being a
saturating subtraction).
## TODO
* Soft wrap integration