Bursty typist issues #670
Unanswered
pablos-here
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm using the solution to mitigate Emacs pinky.
I have remapped the
Space Bar
so when it is held down,Control Left
is generated, otherwise aSpace
is generated:The problem is that I'm a bursty typist. Certain words I type extremely fast. This results in an unintended
control characters
such asCtrl-W
,Ctrl-F
. As some folks know,Ctrl-W
generally closes a window. :\Below is a debug example when using
cat -v
and typingspace
,f
pairs in quick succession. You can see the^F
at the end of the stream.blip.txt
I've tried adding a
wait()
after thehold()
but that did not help. I don't think it should because I believe what I want to do is reduce to zero when the space bar is released and the next character.Beta Was this translation helpful? Give feedback.
All reactions