Ejemplo n.º 1
0
void Shell::displayLine(const LineBuffer& line){
  _cursor.column(_column);
  auto matched = _commands.parse(line.line(), _out, false);
  _modules.lineUpdated(matched, line, *this);
  _cursor.column(line.pos() + _column);
}