diff options
author | liam4 <towerofnix@gmail.com> | 2017-07-03 21:13:50 -0300 |
---|---|---|
committer | liam4 <towerofnix@gmail.com> | 2017-07-03 21:13:50 -0300 |
commit | b087c428ba492715626a7875185f9ba18fb30b3e (patch) | |
tree | c7ca597804b9cb3b13e43782d95b0a24fb83a73e /util | |
parent | 930d61b9f067346f467d4d84015088f57c54da56 (diff) |
Improve cursor display
- Whether the cursor is displayed or not is now based on the cursorVisible property rather than whether cursorX and cursorY are set or not. - The actual shell cursor is now invisible... this is objectively an act of Evil, though! This doesn't look like too hard to fix, thankfully. - A new cleanCursor function has been added to ansi.js.
Diffstat (limited to 'util')
-rw-r--r-- | util/ansi.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/ansi.js b/util/ansi.js index 0e6e3fe..0ee1bc1 100644 --- a/util/ansi.js +++ b/util/ansi.js @@ -43,6 +43,12 @@ const ansi = { return `${ESC}[${line + 1};${col + 1}H` }, + cleanCursor() { + // A combination of codes that generally cleans up the cursor. + + return ansi.resetAttributes() + ansi.showCursor() + }, + hideCursor() { // Makes the cursor invisible. |