dthree/vorpal

Hitting CTRL+C while in Inquirer prompt breaks everything

Open

#42 创建于 2015年11月1日

在 GitHub 查看
 (16 评论) (0 反应) (0 负责人)JavaScript (5,609 star) (313 fork)batch import
bughelp wanted

描述

The output looks like this:

(^C again to quit)
function (str) {
  if (str === undefined) {
    return this._delimiter;
  }
  this._delimiter = String(str).trim() + ' ';
  if (this.isLocal()) {
    this.parent.ui.refresh();
  } else {
    this.parent._send('vantage-delimiter-downstream', 'downstream', {value: str, sessionId: this.id});
  }
  return this;
}
_

You can still type but nothing happens. Only way to recover is hitting CTRL+C again.

贡献者指南