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.
1 parent 350b37f commit 3b05878Copy full SHA for 3b05878
plugin/vim-composer.vim
@@ -59,19 +59,16 @@ function! s:ComposerInstallFunc(arg)
59
endif
60
endfunction
61
62
-function! s:ComposerInit(arg)
+function! s:ComposerInit()
63
exe s:ComposerRunFunc("init")
64
- if len(g:composer_install_callback) > 0
65
- exe "call ".g:composer_install_callback."()"
66
- endif
67
68
69
function! s:ComposerUpdateFunc(arg)
70
exe s:ComposerRunFunc("update")
71
72
73
-function! s:ComposerRequireFunc(repo, version)
74
- exe s:ComposerRunFunc("require", repo, version)
+function! s:ComposerRequireFunc()
+ exe s:ComposerRunFunc("require")
75
76
77
function! g:ComposerKnowWhereCurrentFileIs()
0 commit comments