Hirohito Higashi wrote:
> A following patch would fix this issue. > > ```patch > diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim > index 65b9fe57b..a79e36d90 100644 > --- a/runtime/plugin/matchparen.vim > +++ b/runtime/plugin/matchparen.vim > @@ -192,6 +192,7 @@ function! s:Highlight_Matching_Pair() > \ 'c\)\|\(\%' . m_lnum . 'l\%' . m_col . 'c\)/' > endif > let w:paren_hl_on = 1 > + redraw! > endif > endfunction > > ``` > > To: @brammool (As a maintainer of matchparen.vim) > I think that this patch is good if we don't need to modify Vim itself. Hmm, this clears the screen and redraws. This probably makes it work because the syntax highlighting is recomputed. It's also the slowest way to fix this. Well, more like a workaround than a fix. -- msdn.microsoft.com: ERROR_SUCCESS 0 (0x0) The operation completed successfully. I have always suspected that for Microsoft success is an error. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
