mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-29 07:58:01 -04:00
wip: vt parsing: initial csi/osc dispatching
This commit is contained in:
parent
0e6aa61d69
commit
2a4c08b941
10 changed files with 571 additions and 103 deletions
12
osc.c
Normal file
12
osc.c
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include "osc.h"
|
||||
|
||||
#define LOG_MODULE "osc"
|
||||
#define LOG_ENABLE_DBG 1
|
||||
#include "log.h"
|
||||
|
||||
bool
|
||||
osc_dispatch(struct terminal *term)
|
||||
{
|
||||
LOG_DBG("OCS: %.*s", (int)term->vt.osc.idx, term->vt.osc.data);
|
||||
return true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue