[EMACSMODE] mapping backspace to <CTRL>-H

This commit is contained in:
rachytski 2011-10-12 18:09:48 +03:00 committed by Alex Zolotarev
parent 38357c86c4
commit fcd78ab8b2

View file

@ -583,7 +583,7 @@ void EmacsModeHandler::Private::init()
m_shortcuts.push_back(Emacs::Shortcut("<META>|m")
.addFn(boost::bind(&EmacsModeHandler::Private::newLine, this))
.addFn(boost::bind(&EmacsModeHandler::Private::setKillBufferAppending, this, false)));
m_shortcuts.push_back(Emacs::Shortcut("<META>|j")
m_shortcuts.push_back(Emacs::Shortcut("<META>|h")
.addFn(boost::bind(&EmacsModeHandler::Private::backspace, this))
.addFn(boost::bind(&EmacsModeHandler::Private::setKillBufferAppending, this, false)));
m_shortcuts.push_back(Emacs::Shortcut("<META>|e")