" Useful to audit/optimize applications or as a fun effect.\n"
" Disabling jump scrolling will affect the behavior, see -r\n"
" and -j. With -j1 a middle ground is possible.\n"
+ " Can also be configured using the special escape sequence\n"
+ " [?658467;65548;<n1>[;<n2>]h where <n1> is like -z and the\n"
+ " optional <n2> is like -Z.\n"
" -Z - If -z is enabled, specify the number of bytes to read\n"
" before sleeping. Useful when the scheduler cannot sleep\n"
" for short enough delays.\n"
st->text_blink_speed_off
= s2;
draw_blink_reset();
+ } else if ((state->curparam == 2 ||
+ state->curparam == 3) &&
+ state->csiparam[1] ==
+ 65548) {
+ int s1 = state->csiparam[2],
+ s2 = (state->curparam == 3
+ ? state->csiparam[3]
+ : 0);
+
+ /* Text input speed */
+ if (s1 > -1 && s1 <= 100000)
+ cfg_inputsleep = s1;
+ if (s2 > -1 && s2 <= 256)
+ cfg_inputsleepskip =
+ s2;
} else if (state->curparam == 3 &&
state->csiparam[1] ==
65539) {