From c9a1854409873817586d7dd1f46e49d9a1803591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakobus=20Sch=C3=BCrz?= Date: Fri, 30 Oct 2020 23:47:43 +0100 Subject: [PATCH] do not commit helptags --- bin/vim-plugins-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/vim-plugins-install b/bin/vim-plugins-install index 563cc26..e28ce9e 100755 --- a/bin/vim-plugins-install +++ b/bin/vim-plugins-install @@ -4,8 +4,8 @@ grep -v "^\"" vimplugins |while read cmd type url;do case $cmd in install) git submodule add $url vim/pack/${type}/start/$(basename ${url%.git}) - vim -es -c ":helptags vim/pack/${type}/start/$(basename ${url%.git})" -c ":q!" - - git -C vim/pack/${type}/start/$(basename ${url%.git}) commit . -m "add helptags" + #vim -es -c ":helptags vim/pack/${type}/start/$(basename ${url%.git})" -c ":q!" - + #git -C vim/pack/${type}/start/$(basename ${url%.git}) commit . -m "add helptags" ;; remove) git submodule-remove vim/pack/${type}/start/$(basename ${url%.git})