diff --git a/csi.c b/csi.c index a5e19290..1af30005 100644 --- a/csi.c +++ b/csi.c @@ -775,6 +775,16 @@ csi_dispatch(struct terminal *term, uint8_t final) /* metaSendsEscape - we always send escape */ break; +#if 0 + case 1042: + LOG_WARN("unimplemented: 'urgency' window manager hint on ctrl-g"); + break; + + case 1043: + LOG_WARN("unimplemented: raise window on ctrl-g"); + break; +#endif + case 1049: if (term->grid != &term->alt) { selection_cancel(term); @@ -865,6 +875,16 @@ csi_dispatch(struct terminal *term, uint8_t final) LOG_WARN("unimplemented: meta does *not* send escape"); break; +#if 0 + case 1042: + /* 'urgency' window manager hint on ctrl-g */ + break; + + case 1043: + /* raise window on ctrl-g */ + break; +#endif + case 1049: if (term->grid == &term->alt) { selection_cancel(term);