Make minpac commands have consistent format

This commit is contained in:
Kenneth Benzie 2019-02-21 11:47:23 +00:00
parent d555afe61e
commit b493ad17e5

View File

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