Andy Massimino
Andy Massimino
With syntax_hl: 1 the code should be here: https://github.com/andymass/vim-matchup/blob/09576fd767cc55ca934a95f9bdcf91aa12c32cd0/autoload/matchup/matchparen.vim#L705 You can see this code uses the function originally meant to build the status line string, and converts the highlight group...
match-up offers a helper function to customize html matches. Create a file `.vim/after/ftplugin/html.vim` (or use an autocmd) containing: let b:match_words = matchup#util#standard_html() For allowing self closing tag with the same...
Closing this as I can't reproduce it, the popup seems to work fine with cmdheight=0.
It is _technically_ possible to distinguish between an empty-region text object and a failed/invalid text object, if you create your own 'delete' operator... ```vim function! s:delete_or_empty(...) if !a:0 let l:func...
The only problem with this is `` is a built in feature in visual mode in vim. You should be able to put xmap i% or xmap (matchup-i%) in your...
> Why two Vim maps cannot call same command (a one) ? This is actually by design and documented here: https://github.com/andymass/vim-matchup/blob/56c714495ec7f40cf2c7e92fb124067c7951e650/doc/matchup.txt#L181 The idea is if you manually map something to...
Is it all .js files, otherwise can a sample .js file showing the error be provided?
I believe injections should be supported but it depends on the treesitter language. If I recall correctly it should be simple as adding an elixir query to get matchup to...
What file type are you editing? On Wed, Nov 6, 2024 at 8:59 AM Roland Puntaier ***@***.***> wrote: > set maxmempattern=2000000 > > does help, though. > > Please close...