diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 04:57:26 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 05:07:06 +0100 |
commit | 1e5115b0b40bcf57501d4b0b5dce8e7ecd61432d (patch) | |
tree | 0dc00efad34dcc3a013ca26612fa759298ed9490 /src/parser.cpp | |
parent | d503c3b07c2157658f699294c44ad5be244727a5 (diff) | |
download | sciteco-1e5115b0b40bcf57501d4b0b5dce8e7ecd61432d.tar.gz |
Q-Register loading and saving using the IOView class
* EW can save Q-Registers now
* the new E% may be used to save a q-register without making it
the current document
Diffstat (limited to 'src/parser.cpp')
-rw-r--r-- | src/parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 4b8caef..8c9e209 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1802,6 +1802,7 @@ StateASCII::custom(gchar chr) StateECommand::StateECommand() : State() { transitions['\0'] = this; + transitions['%'] = &States::epctcommand; transitions['B'] = &States::editfile; transitions['C'] = &States::executecommand; transitions['G'] = &States::egcommand; |