Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2009, 10:32:06 PM (15 years ago)
Author:
rgrieder
Message:

Input part of the IOConsole should be working (at least with SSH on tardis). Note: removed modules from compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/libraries/core/Shell.cc

    r5969 r5973  
    118118        this->inputBuffer_->registerListener(this, &Shell::inputChanged, true);
    119119        this->inputBuffer_->registerListener(this, &Shell::execute, '\r', false);
     120        this->inputBuffer_->registerListener(this, &Shell::execute, '\n', false);
    120121        this->inputBuffer_->registerListener(this, &Shell::hintandcomplete, '\t', true);
    121122        this->inputBuffer_->registerListener(this, &Shell::backspace, '\b', true);
     123        this->inputBuffer_->registerListener(this, &Shell::backspace, static_cast<char>(127), true);
    122124        this->inputBuffer_->registerListener(this, &Shell::deletechar, KeyCode::Delete);
    123125        this->inputBuffer_->registerListener(this, &Shell::exit, static_cast<char>(27), true);
Note: See TracChangeset for help on using the changeset viewer.