第一次提交
This commit is contained in:
28
node_modules/keypress/test.js
generated
vendored
Normal file
28
node_modules/keypress/test.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
var keypress = require('./')
|
||||
keypress(process.stdin)
|
||||
|
||||
if (process.stdin.setRawMode)
|
||||
process.stdin.setRawMode(true)
|
||||
else
|
||||
require('tty').setRawMode(true)
|
||||
|
||||
process.stdin.on('keypress', function (c, key) {
|
||||
console.log(0, c, key)
|
||||
if (key && key.ctrl && key.name == 'c') {
|
||||
process.stdin.pause()
|
||||
}
|
||||
})
|
||||
process.stdin.on('mousepress', function (mouse) {
|
||||
console.log(mouse)
|
||||
})
|
||||
|
||||
keypress.enableMouse(process.stdout)
|
||||
process.on('exit', function () {
|
||||
//disable mouse on exit, so that the state is back to normal
|
||||
//for the terminal.
|
||||
keypress.disableMouse(process.stdout)
|
||||
})
|
||||
|
||||
process.stdin.resume()
|
||||
|
||||
Reference in New Issue
Block a user