mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-09 08:21:01 -04:00
dcs: sort of implement DCS passthrough
We now store the passthrough characters in a buffer, and call dcs_passthrough() on unhook. However, dcs_passthrough() doesn't do anything.
This commit is contained in:
parent
153628a217
commit
b953326768
6 changed files with 62 additions and 4 deletions
|
|
@ -129,6 +129,11 @@ struct vt {
|
|||
size_t size;
|
||||
size_t idx;
|
||||
} osc;
|
||||
struct {
|
||||
uint8_t *data;
|
||||
size_t size;
|
||||
size_t idx;
|
||||
} dcs;
|
||||
struct {
|
||||
uint8_t data[4];
|
||||
size_t idx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue