We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67b3e9f + 3131cf9 commit 6eeb33fCopy full SHA for 6eeb33f
README.md
@@ -11,6 +11,10 @@ To run command for example `:ComposerRun validate` run command validate for your
11
```
12
This command exec the installation flow of composer's install. This process require `curl`
13
14
+```vim
15
+:ComposerInstall [--no-dev ..]
16
+```
17
+This command exec `composer install`
18
19
## Install
20
```vim
plugin/vim-composer.vim
@@ -22,6 +22,7 @@ if !exists("g:composer_cmd")
22
endif
23
24
command! -narg=* ComposerRun call s:ComposerRunFunc(<q-args>)
25
+command! -narg=* ComposerInstall call s:ComposerRunFunc("install ".<q-args>)
26
command! ComposerGet call s:ComposerGetFunc()
27
28
function! s:ComposerRunFunc(arg)
0 commit comments