« get me outta code hell

Improve cursor display - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
authorliam4 <towerofnix@gmail.com>2017-07-03 21:13:50 -0300
committerliam4 <towerofnix@gmail.com>2017-07-03 21:13:50 -0300
commitb087c428ba492715626a7875185f9ba18fb30b3e (patch)
treec7ca597804b9cb3b13e43782d95b0a24fb83a73e /examples
parent930d61b9f067346f467d4d84015088f57c54da56 (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 'examples')
-rw-r--r--examples/list-scroll-form.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/list-scroll-form.js b/examples/list-scroll-form.js
index a68cb78..cb7fa27 100644
--- a/examples/list-scroll-form.js
+++ b/examples/list-scroll-form.js
@@ -13,6 +13,7 @@ interfacer.getScreenSize().then(size => {
 
   const list = new ListScrollForm()
   root.addChild(list)
+
   list.x = 2
   list.y = 2
   list.w = root.contentW - 4
@@ -23,6 +24,7 @@ interfacer.getScreenSize().then(size => {
     list.addInput(button)
 
     button.on('pressed', () => {
+      process.stdout.write(ansi.cleanCursor())
       process.stdout.write(ansi.clearScreen())
       console.log(item)
       process.exit(0)