You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
within this instance, up/down do not work as expected.
I've tested this with dtach instead of abduco, with xterm (and console) instead of st. So I've narrowed it down to something funky in dvtm. However, that's as far as I've gotten.
FWIW, env in both st instances is the same except WINDOWID.
FWIW, oddly the KEY_PPAGE works fine (one of the defualt bindings)
Thanks in advance for any help on this.
The text was updated successfully, but these errors were encountered:
It would appears that keys that stop working when re-attached via a different st instance include: KEY_IC, KEY_DC, KEY_HOME, KEY_END, KEY_LEFT, KEY_RIGHT, KEY_UP, and KEY_DOWN.
However, note that KEY_PPAGE and KEY_NPAGE continue to work! (I.e., I can set #define MOD KEY_PPAGE and it will work fine, but, e.g., #define MOD KEY_IC will not.)
I still haven't found any rhyme or reason why that set of keys would be signaled out...
Three small updates (still debugging this):
(1) it works fine in console.
(2) it fails in st, xterm, urxvt
(3) it might be abduco/dvtm, since abduco -c foo yash and then abduco -a foo also exhibits same problem with arrow keys not registering in the attached abduco.
This is an odd problem. I'm still finding the exact case where this happens.
Basically, to duplicate:
in config.h bind some key to the right/up/down/left arrow or home, e.g.
{ { MOD, KEY_DOWN, }, { focusdown, { NULL } } },
{ { MOD, KEY_UP, }, { focusup, { NULL } } },
launch st
abduco -c test
within this instance, up/down work as expected.
launch a separate st
abduco -a test
within this instance, up/down do not work as expected.
I've tested this with dtach instead of abduco, with xterm (and console) instead of st. So I've narrowed it down to something funky in dvtm. However, that's as far as I've gotten.
FWIW, env in both st instances is the same except WINDOWID.
FWIW, oddly the KEY_PPAGE works fine (one of the defualt bindings)
Thanks in advance for any help on this.
The text was updated successfully, but these errors were encountered: