diff options
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index 3a8b72e4f9..906c9a6f47 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -1354,6 +1354,10 @@ int do_search(oparg_T *oap, int dirc, int search_delim, char_u *pat, long count, } retval = 1; // pattern found + if (sia && sia->sa_wrapped) { + apply_autocmds(EVENT_SEARCHWRAPPED, NULL, NULL, false, NULL); + } + /* * Add character and/or line offset */ |