dthree / vorpal

Node's framework for interactive CLIs

Home Page:http://vorpal.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vorpal.ui.submit not working.

DrMiaow opened this issue · comments

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