mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-01 21:18:38 +03:00
20 lines
334 B
Markdown
20 lines
334 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 substraction).
|
|
|
|
## TODO
|
|
|
|
* Soft wrap integration
|