mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-19 14:00:29 +00:00
seqs
This commit is contained in:
24
docs/sequences/bel.md
Normal file
24
docs/sequences/bel.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# Bell
|
||||
|
||||
| | |
|
||||
| --- | --- |
|
||||
| Text | |
|
||||
| Hex | `0x07` |
|
||||
|
||||
Rings a "bell" to alert the operator to some condition.
|
||||
|
||||
## Implementation Details
|
||||
|
||||
* ghostty logs "BELL"
|
||||
|
||||
## TODO
|
||||
|
||||
* Add a configurable visuable bell -- common in most terminal emulators --
|
||||
to flash the border.
|
||||
* Mark the window as requesting attention, most operating systems support
|
||||
this. For example, Windows windows will flash in the toolbar.
|
||||
* Support an audible bell.
|
||||
|
||||
## References
|
||||
|
||||
* https://vt100.net/docs/vt100-ug/chapter3.html
|
||||
19
docs/sequences/bs.md
Normal file
19
docs/sequences/bs.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user