Andy Massimino

Results 139 comments of Andy Massimino
trafficstars

Does deferred matching help? let g:matchup_matchparen_deferred = 1

Can you share an example that demonstrates the issue? Also did you play around with the following options? You might get better results. ```vim let g:matchup_matchparen_deferred_show_delay = 50 let g:matchup_matchparen_deferred_hide_delay...

Can you choose a value between 50 and 500? Or is the larger value the least that works? I feel that something else might be happening with your configuration. I...

I notice in some of your timings you have references to get_surrounding/highlight_surrounding (are you using `g:matchup_matchparen_hi_surround_always`). I would say you should disable this feature as it's very expensive especially with...

I made a quick change that should improve `g:matchup_matchparen_hi_surround_always` a bit. I see some other possible improvements that I need to experiment with.

Is this request intended for python or some other languages?

The main problem is match-up needs to know where to stop looking for more clauses. And unfortunately, perl is much too difficult to parse using regex. It would be possible...

What is the actual filetype (output of `set filetype` / `echo &filetype`)? Are you using the workaround mentioned in #35 / comment of the vimrc or only what's in the...

Thanks. There is a bit of a race condition with your config, can you also tell me what is the output of `:echo b:match_words` in the file?

Strangely, I cannot reproduce this using the exact same `b:match_words`. I am having trouble understanding whether vim-polyglot is part of the problem somehow. Does removing that cause it to work?...