mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
528 B
25 lines
528 B
12 years ago
|
#!/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()
|