This commit is contained in:
Shougo 2024-09-17 12:47:31 +03:00 committed by GitHub
commit 27bf2372bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1259,6 +1259,7 @@ int do_search(oparg_T *oap, int dirc, int search_delim, char *pat, size_t patlen
// do not fill the msgbuf buffer, if cmd_silent is set, leave it
// empty for the search_stat feature.
if (!cmd_silent) {
ui_busy_start();
msgbuf[0] = (char)dirc;
if (utf_iscomposing_first(utf_ptr2char(p))) {
// Use a space to draw the composing char on.
@ -1305,6 +1306,7 @@ int do_search(oparg_T *oap, int dirc, int search_delim, char *pat, size_t patlen
gotocmdline(false);
ui_flush();
ui_busy_stop();
msg_nowait = true; // don't wait for this message
}