mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
Add g:loaded_matchit check (#13226)
I have added g:loaded_matchit check to skip matchit loading like other default plugins.
This commit is contained in:
parent
33560002b4
commit
9cc702ae11
@ -1,4 +1,4 @@
|
||||
" Nvim: load the matchit plugin by default.
|
||||
if stridx(&packpath, $VIMRUNTIME) >= 0
|
||||
if !exists("g:loaded_matchit") && stridx(&packpath, $VIMRUNTIME) >= 0
|
||||
packadd matchit
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user