diff options
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -892,7 +892,8 @@ StateControl::custom(gchar chr) StateECommand::StateECommand() : State() { transitions['\0'] = this; - transitions['B'] = &States::file; + transitions['B'] = &States::editfile; + transitions['W'] = &States::savefile; transitions['Q'] = &States::eqcommand; } |