update-vim-plugins: remove base16-vim workaround (it's fixed now)

master
an 2019-06-13 21:41:19 -04:00
parent 558c456dd6
commit 506219de4b
1 changed files with 2 additions and 6 deletions

View File

@ -4,22 +4,18 @@ function pull_plugins
for plugin in ./* for plugin in ./*
cd $plugin cd $plugin
echo "Updating $plugin"
git stash git stash
git pull -f git pull -f
set res $status set res $status
if test $res != 0; and test $res != 128 if test $res != 0; and test $res != 128
echo "error $res in $PWD" echo "error $res in $PWD"
exit 1 exit 1
end end
if test "$plugin" = ./base16-vim
echo "fixing attrs for $plugin"
sed -i '/Base16hi/! s/a:\(attr\|guisp\)/l:\1/g' colors/*.vim
end
if test -d doc if test -d doc
echo "generating tags for $PWD" echo "generating tags for $PWD"
vim --cmd "helptags doc/" --cmd "q" vim --cmd "helptags doc/" --cmd "q"