fix(startup): nvim with --clean should not load user rplugins

runtime rplugins such like legacy script providers are not affected
by this change.
This commit is contained in:
bfredl
2022-06-04 18:35:28 +02:00
parent df4ffce543
commit aad20de5ab
2 changed files with 5 additions and 1 deletions

View File

@@ -62,4 +62,6 @@ endfunction
command! -bar UpdateRemotePlugins call remote#host#UpdateRemotePlugins()
call s:LoadRemotePlugins()
if index(v:argv, "--clean") < 0
call s:LoadRemotePlugins()
endif