summaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c
index 0bf49629eb..7bda6f9834 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1592,7 +1592,12 @@ do_search(
&& !shortmess(SHM_SEARCHCOUNT)
&& msgbuf != NULL)
search_stat(dirc, &pos, show_top_bot_msg, msgbuf,
- (count != 1 || has_offset));
+ (count != 1 || has_offset
+#ifdef FEAT_FOLDING
+ || (!(fdo_flags & FDO_SEARCH) &&
+ hasFolding(curwin->w_cursor.lnum, NULL, NULL))
+#endif
+ ));
/*
* The search command can be followed by a ';' to do another search.