I want to hide the cursor in my blessed application. I've tried using the following options:
cursor: {
color: "black",
blink: false,
artificial: true,
},
Inside the screen object, it didn't work. So, I've also tried using:
var cur = require('hide-cursor');
cur.hide();
which didn't work either.
Anyone got some ideas on how to do that?