summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/ansi/examples/cursorPosition.js
blob: 0f45bdbe5896a3f34b679a669a4a5d4be597f4c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env node

var tty = require('tty')
var cursor = require('../')(process.stdout)

// listen for the queryPosition report on stdin
process.stdin.resume()
tty.setRawMode(true)

process.stdin.once('data', function (b) {
  var match = /\[(\d+)\;(\d+)R$/.exec(b.toString())
  if (match) {
    var xy = match.slice(1, 3).reverse().map(Number)
    console.error(xy)
  }

  // cleanup and close stdin
  tty.setRawMode(false)
  process.stdin.pause()
})


// send the query position request code to stdout
cursor.queryPosition()