Once again fix minpac initialization

This commit is contained in:
Kenneth Benzie 2020-12-10 17:41:17 +00:00
parent 48913e09c3
commit 76acb9cd90

View File

@ -1,10 +1,10 @@
" minpac " minpac
command! PackUpdate packadd minpac | source $MYVIMRC | function! s:minpac_init() abort
\ call minpac#init() | call minpac#update('', {'do': 'call minpac#status()'}) packadd minpac | call minpac#init() | source $MYVIMRC
command! PackStatus packadd minpac | source $MYVIMRC | endfunction
\ call minpac#init() | call minpac#status() command! PackUpdate call s:minpac_init() | call minpac#update('', {'do': 'call minpac#status()'})
command! PackClean packadd minpac | source $MYVIMRC | command! PackStatus call s:minpac_init() | call minpac#status()
\ call minpac#init() | call minpac#clean() command! PackClean call s:minpac_init() | call minpac#clean()
" Sort Python Imports " Sort Python Imports
command! ISort call do#isort() command! ISort call do#isort()