From 8dff1dae37d0ef2fc9cd0dff2c67ceb20a3df05f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 20 Jun 2014 09:58:50 +0900 Subject: [PATCH] Allow trailing comment after Plug declaration (#23) --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 588fca3..7707189 100644 --- a/plug.vim +++ b/plug.vim @@ -92,7 +92,7 @@ function! plug#begin(...) " we want to keep track of the order plugins where registered. let g:plugs_order = [] - command! -nargs=+ Plug call s:add(1, ) + command! -nargs=+ -bar Plug call s:add(1, ) command! -nargs=* PlugInstall call s:install() command! -nargs=* PlugUpdate call s:update() command! -nargs=0 -bang PlugClean call s:clean('' == '!')