Add bang versions of install commands to leave the output open

This commit is contained in:
Ben Jackson 2020-07-22 22:09:49 +01:00
commit 29cb5c914b
5 changed files with 33 additions and 12 deletions

View file

@ -99,12 +99,12 @@ command! -bar
\ call vimspector#Reset()
" Installer commands
command! -bar -nargs=* -complete=custom,vimspector#CompleteInstall
command! -bar -bang -nargs=* -complete=custom,vimspector#CompleteInstall
\ VimspectorInstall
\ call vimspector#Install( <f-args> )
command! -bar -nargs=*
\ call vimspector#Install( <q-bang>, <f-args> )
command! -bar -bang -nargs=*
\ VimspectorUpdate
\ call vimspector#Update( <f-args> )
\ call vimspector#Update( <q-bang>, <f-args> )
command! -bar -nargs=0
\ VimspectorAbortInstall
\ call vimspector#AbortInstall()