Change the timer to avoid split of big pastes

This commit is contained in:
Florent Le Coz 2011-02-15 22:16:45 +01:00
parent 32d8a5281d
commit fd05c7d707

View file

@ -57,7 +57,7 @@ def read_char(s):
if first < 127: # ASCII char on one byte
if first <= 26: # transform Ctrl+* keys
char = chr(first + 64)
if char == 'M' and time.time() - last_char_time < 0.0001:
if char == 'M' and time.time() - last_char_time < 0.0005:
char = 'J'
return "^"+char
if first == 27: