diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 04:06:45 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 04:06:45 +0100 |
commit | 575c9f45ec0f338e1d22032b98773d3ff3386bc9 (patch) | |
tree | db0362ce6f69d2a18ec6e94ad6889254050f1eae /parser.cpp | |
parent | 457fe1498d5fe88e0447ddecd617281f7afd3304 (diff) | |
download | sciteco-575c9f45ec0f338e1d22032b98773d3ff3386bc9.tar.gz |
search-replace command with default replacement string (FR)
* based on FS command
* default replacement string is stored in global register "-"
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1016,6 +1016,7 @@ StateFCommand::StateFCommand() : State() { transitions['\0'] = this; transitions['S'] = &States::replace; + transitions['R'] = &States::replacedefault; } State * |