vorpal
vorpal copied to clipboard
vorpal.ui.submit not working.
With my prompt set to '>' I execute
vorpal.ui.submit('help')
And all I see is
>
>
Am I missing something?
This seems to be happening to me too. It looks like the enter key is submitted, but the text is not.
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);