vorpal icon indicating copy to clipboard operation
vorpal copied to clipboard

key blocked after first command

Open Alaanor opened this issue 8 years ago • 0 comments

Hi,

This npm package look just awesome but ... Even with the simplest code, showed at the main page:

const vorpal = require('vorpal')();

vorpal
  .command('foo', 'Outputs "bar".')
  .action(function(args, callback) {
    this.log('bar');
    callback();
  });

vorpal
  .delimiter('myapp$')
  .show();

This doesn't work perfectly. Here is a video that show the problem.

Alaanor.

Alaanor avatar Jun 22 '17 19:06 Alaanor