Issue #393 - use non-blinking cursor code as the default

still not perfect, we should ideally save and restore like on Windows,
but it is a pain to do
This commit is contained in:
Adam D. Ruppe 2023-06-21 13:25:59 -04:00
parent bfd674aeaf
commit 8ccbe52704
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ struct Terminal {
if(terminalInFamily("linux"))
writeStringRaw("\033[?0c");
else
writeStringRaw("\033[0 q");
writeStringRaw("\033[2 q"); // assuming non-blinking block are the desired default
break;
case TerminalCursor.insert:
if(terminalInFamily("linux"))