Changeset 5973 for code/branches/console/src/libraries/core/Shell.cc
- Timestamp:
- Oct 20, 2009, 10:32:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/libraries/core/Shell.cc
r5969 r5973 118 118 this->inputBuffer_->registerListener(this, &Shell::inputChanged, true); 119 119 this->inputBuffer_->registerListener(this, &Shell::execute, '\r', false); 120 this->inputBuffer_->registerListener(this, &Shell::execute, '\n', false); 120 121 this->inputBuffer_->registerListener(this, &Shell::hintandcomplete, '\t', true); 121 122 this->inputBuffer_->registerListener(this, &Shell::backspace, '\b', true); 123 this->inputBuffer_->registerListener(this, &Shell::backspace, static_cast<char>(127), true); 122 124 this->inputBuffer_->registerListener(this, &Shell::deletechar, KeyCode::Delete); 123 125 this->inputBuffer_->registerListener(this, &Shell::exit, static_cast<char>(27), true);
Note: See TracChangeset
for help on using the changeset viewer.