diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 04:23:21 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 04:57:17 +0100 |
commit | 99bc57227170fea32cb3dbf923a4b4ab00aca1cc (patch) | |
tree | cf089be3a5abc30c8f70f2f14c6e18ed4592f761 /parser.cpp | |
parent | 575c9f45ec0f338e1d22032b98773d3ff3386bc9 (diff) | |
download | sciteco-99bc57227170fea32cb3dbf923a4b4ab00aca1cc.tar.gz |
search-delete command (FD)
* new base for searc-replace command states
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1015,6 +1015,7 @@ StateStart::custom(gchar chr) throw (Error) StateFCommand::StateFCommand() : State() { transitions['\0'] = this; + transitions['D'] = &States::searchdelete; transitions['S'] = &States::replace; transitions['R'] = &States::replacedefault; } |