summaryrefslogtreecommitdiff
path: root/find.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-07 14:23:51 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-07 14:23:51 -0500
commit5102b04327a6d91bafda0b705bf433f8916fcdcc (patch)
treef958d33e2d4178c796106168cea5b5e1519c09af /find.c
parenta47ac4affa33ec43b9073f5c154879185d5e9fb7 (diff)
fix ctrl+f then ctrl+shift+f
Diffstat (limited to 'find.c')
-rw-r--r--find.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/find.c b/find.c
index b682a2b..8775712 100644
--- a/find.c
+++ b/find.c
@@ -454,8 +454,9 @@ static void find_open(Ted *ted, bool replace) {
if (ted->active_buffer && ted_is_regular_buffer(ted, ted->active_buffer)) {
ted->prev_active_buffer = ted->active_buffer;
ted_switch_to_buffer(ted, &ted->find_buffer);
- ted->find = true;
buffer_select_all(ted->active_buffer);
+ ted->find = true;
+ } else if (ted->find) {
ted->replace = replace;
find_update(ted, true);
}