0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Fix: When 'searchhl' causes a hang make CTRL-C disable 'shearchhl'.

This commit is contained in:
Bram Moolenaar 2010-07-20 13:11:28 +02:00
parent 704ac92541
commit c7040a5615
2 changed files with 3 additions and 7 deletions

View File

@ -30,16 +30,12 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
Update syntax menus: run checkmenu. GTK: torn-off menu doesn't work. Because of patch for file selector?
GTK: torn-off menu doesn't work.
:find completion has duplicates. (Bjorn Winckler, 2010 Jul 18)
Win64: diff.exe crashes on Win64. (Julianne Bailey, 2006 Dec 12) Win64: diff.exe crashes on Win64. (Julianne Bailey, 2006 Dec 12)
Build another diff.exe somehow? Build another diff.exe somehow?
Hang in search HL, CTRL-C should clear it. (Dimitar Dimitrov, 2010 Jul 19) :find completion has duplicates. (Bjorn Winckler, 2010 Jul 18)
Conceal: don't show for 'hlmatch' when 'modifiable' is off? Conceal: don't show for 'hlmatch' when 'modifiable' is off?
And don't care about 'cursorline'. And don't care about 'cursorline'.

View File

@ -7119,7 +7119,7 @@ next_search_hl(win, shl, lnum, mincol)
NULL NULL
#endif #endif
); );
if (called_emsg) if (called_emsg || got_int)
{ {
/* Error while handling regexp: stop using this regexp. */ /* Error while handling regexp: stop using this regexp. */
if (shl == &search_hl) if (shl == &search_hl)