mirror of https://github.com/adamdruppe/arsd.git
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:
parent
bfd674aeaf
commit
8ccbe52704
|
@ -633,7 +633,7 @@ struct Terminal {
|
||||||
if(terminalInFamily("linux"))
|
if(terminalInFamily("linux"))
|
||||||
writeStringRaw("\033[?0c");
|
writeStringRaw("\033[?0c");
|
||||||
else
|
else
|
||||||
writeStringRaw("\033[0 q");
|
writeStringRaw("\033[2 q"); // assuming non-blinking block are the desired default
|
||||||
break;
|
break;
|
||||||
case TerminalCursor.insert:
|
case TerminalCursor.insert:
|
||||||
if(terminalInFamily("linux"))
|
if(terminalInFamily("linux"))
|
||||||
|
|
Loading…
Reference in New Issue