aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlejandro Exojo <suy@badopi.org>2021-12-10 20:28:25 +0100
committerGitHub <noreply@github.com>2021-12-10 12:28:25 -0700
commit8ad60154099678b23b78bc8142a168753f53648c (patch)
treef58cea0e3ce1643d43f0966416e95f9f2c6d73bd /src
parent22d7dd2aec9053028cc033e4c68335a81f845e06 (diff)
downloadrneovim-8ad60154099678b23b78bc8142a168753f53648c.tar.gz
rneovim-8ad60154099678b23b78bc8142a168753f53648c.tar.bz2
rneovim-8ad60154099678b23b78bc8142a168753f53648c.zip
feat: add autocommand event when search wraps around (#8487)
Diffstat (limited to 'src')
-rw-r--r--src/nvim/auevents.lua1
-rw-r--r--src/nvim/search.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua
index 1daae85c5e..6227b08b26 100644
--- a/src/nvim/auevents.lua
+++ b/src/nvim/auevents.lua
@@ -76,6 +76,7 @@ return {
'QuickFixCmdPre', -- before :make, :grep etc.
'QuitPre', -- before :quit
'RemoteReply', -- upon string reception from a remote vim
+ 'SearchWrapped', -- after the search wrapped around
'SessionLoadPost', -- after loading a session file
'ShellCmdPost', -- after ":!cmd"
'ShellFilterPost', -- after ":1,2!cmd", ":w !cmd", ":r !cmd".
diff --git a/src/nvim/search.c b/src/nvim/search.c
index f45d709b91..f454a0122c 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
*/