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
As pointed out in #6, currently holding a key only displays when the key was pressed, and when it was released, with no autorepeat. For example, holding down a for a while with xkbcat -up produces
+a
-a
Since key autorepeat is supported at an X11 level, it would be convenient to have an -autorepeat flag, so that xkbcat -up -autorepeat could instead show
+a
=a
=a
=a
-a
where =a stands for an autorepeated KeyPress event.
This change would be backward-compatible.
The XI_RawKeyPress events currently listened for don't contain the flag, but XI_KeyPress events have event->flags & XIKeyRepeat.
The text was updated successfully, but these errors were encountered:
As pointed out in #6, currently holding a key only displays when the key was pressed, and when it was released, with no autorepeat. For example, holding down a for a while with
xkbcat -up
producesSince key autorepeat is supported at an X11 level, it would be convenient to have an
-autorepeat
flag, so thatxkbcat -up -autorepeat
could instead showwhere
=a
stands for an autorepeatedKeyPress
event.This change would be backward-compatible.
The
XI_RawKeyPress
events currently listened for don't contain the flag, butXI_KeyPress
events haveevent->flags & XIKeyRepeat
.The text was updated successfully, but these errors were encountered: