mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-08 10:06:22 -05:00
13 lines
216 B
C
13 lines
216 B
C
|
|
#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;
|
||
|
|
}
|