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
Inspecting xtermjs source, does seem to implement DECSCUSR \e[# q (where # is [0-7], \e[2 q is a steady block) in InputHandler.ts, but it has no effect in the single.py demo.
How to make echo -e '\e[2 q' work? (equivalent to \033[2 q, or \x1b[2 q)
Or some other way so the cursor doesn't blink.
The text was updated successfully, but these errors were encountered:
Inspecting xtermjs source, does seem to implement DECSCUSR
\e[# q
(where # is [0-7],\e[2 q
is a steady block) inInputHandler.ts
, but it has no effect in thesingle.py
demo.How to make
echo -e '\e[2 q'
work? (equivalent to\033[2 q
, or\x1b[2 q
)Or some other way so the cursor doesn't blink.
The text was updated successfully, but these errors were encountered: