vorpal icon indicating copy to clipboard operation
vorpal copied to clipboard

vorpal.ui.submit not working.

Open DrMiaow opened this issue 6 years ago • 2 comments

With my prompt set to '>' I execute

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

>
>

Am I missing something?

DrMiaow avatar Mar 08 '18 11:03 DrMiaow

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

ajklotz avatar Jul 05 '18 18:07 ajklotz

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);

gvorster avatar May 23 '21 11:05 gvorster