Version
v16.13.0
Platform
Ubuntu 18.04
Subsystem
No response
What steps will reproduce the bug?
Hello, I have to use keypress after asking a question to a user. For those 2 actions I use readline as follow :
importreadlinefrom"readline";constmenu=readline.createInterface({input: process.stdin,output: process.stdout});letanswer=0;constmyFunc=async()=>{returnnewPromise((resolve,reject)=>{menu.question('Choose an exchange to use : ',function(answer){if(isNaN(answer)||parseInt(answer)<1||parseInt(answer)>10)answer=undefined;menu.close();resolve(answer);});});}answer=awaitmyFunc();readline.emitKeypressEvents(process.stdin)process.stdin.setRawMode(true);process.stdin.on('keypress',async(character,key)=>{if(key.name==='c'&&key.ctrl){process.exit()}if(key.name==='1'||key.name==='2'||key.name==='3'||key.name==='4'){console.log(key.name)}});But I have notice that keypress event is definitely not working when I ask a question before. If I just remove the question part, it works as expected.
How often does it reproduce? Is there a required condition?
It always happens when the condition of asking a question before is respected. I have noticed that when I remove "await" before the function call, it works as expected
What is the expected behavior?
The expected behaviour is : program print "1", "2", "3", "4", when I hit one of these keys, or exit when I hit ctrl+c
What do you see instead?
Instead I see nothing and program doesn't exit.
Additional information
No response
Version
v16.13.0
Platform
Ubuntu 18.04
Subsystem
No response
What steps will reproduce the bug?
Hello, I have to use keypress after asking a question to a user. For those 2 actions I use readline as follow :
But I have notice that keypress event is definitely not working when I ask a question before. If I just remove the question part, it works as expected.
How often does it reproduce? Is there a required condition?
It always happens when the condition of asking a question before is respected. I have noticed that when I remove "await" before the function call, it works as expected
What is the expected behavior?
The expected behaviour is : program print "1", "2", "3", "4", when I hit one of these keys, or exit when I hit ctrl+c
What do you see instead?
Instead I see nothing and program doesn't exit.
Additional information
No response