neovim/runtime/plugin/matchit.vim
Shougo 9cc702ae11
Add g:loaded_matchit check (#13226)
I have added g:loaded_matchit check to skip matchit loading like other default plugins.
2020-11-04 18:46:03 -05:00

5 lines
138 B
VimL

" Nvim: load the matchit plugin by default.
if !exists("g:loaded_matchit") && stridx(&packpath, $VIMRUNTIME) >= 0
packadd matchit
endif