dthree / vorpal

Node's framework for interactive CLIs
http://vorpal.js.org
MIT License
5.64k stars 280 forks source link

vorpal.ui.submit not working. #303

Open DrMiaow opened 6 years ago

DrMiaow commented 6 years ago

With my prompt set to '>' I execute

vorpal.ui.submit('help') And all I see is

>
>

Am I missing something?

ajklotz commented 6 years ago

This seems to be happening to me too. It looks like the enter key is submitted, but the text is not.

gvorster commented 3 years ago

I have the same issue. Currently as a workaround I'm using robotjs to simulate this

const robot = require("robotjs");

setTimeout(() => {
    robot.typeString("help");
    robot.keyTap("enter");   
}, 0);