Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ To run command for example `:ComposerRun validate` run command validate for your
```
This command exec the installation flow of composer's install. This process require `curl`

```vim
:ComposerInstall [--no-dev ..]
```
This command exec `composer install`

## Install
```vim
Expand Down
1 change: 1 addition & 0 deletions plugin/vim-composer.vim
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ if !exists("g:composer_cmd")
endif

command! -narg=* ComposerRun call s:ComposerRunFunc(<q-args>)
command! -narg=* ComposerInstall call s:ComposerRunFunc("install ".<q-args>)
command! ComposerGet call s:ComposerGetFunc()

function! s:ComposerRunFunc(arg)
Expand Down