Add some comments about the other mouse reporting modes.
This commit is contained in:
parent
405fd89ac1
commit
317b785921
1 changed files with 8 additions and 1 deletions
9
st.c
9
st.c
|
@ -1815,9 +1815,16 @@ tsetmode(bool priv, bool set, int *args, int narg) {
|
||||||
case 1048:
|
case 1048:
|
||||||
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
|
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
|
||||||
break;
|
break;
|
||||||
|
/* Not implemented mouse modes. See comments there. */
|
||||||
case 9: /* X10 compatibility mode */
|
case 9: /* X10 compatibility mode */
|
||||||
case 1001: /* mouse highlight mode; can hang the
|
case 1001: /* mouse highlight mode; can hang the
|
||||||
terminal when implemented. */
|
terminal by design when implemented. */
|
||||||
|
case 1005: /* UTF-8 mouse mode; will confuse
|
||||||
|
applications not supporting UTF-8
|
||||||
|
and luit. */
|
||||||
|
case 1015: /* urxvt mangled mouse mode; incompatible
|
||||||
|
and can be mistaken for other control
|
||||||
|
codes. */
|
||||||
default:
|
default:
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"erresc: unknown private set/reset mode %d\n",
|
"erresc: unknown private set/reset mode %d\n",
|
||||||
|
|
Loading…
Reference in a new issue