add vim-hug-neovim-rpc-git so deoplete will work with vim

This commit is contained in:
2018-02-25 18:11:16 -08:00
parent 2138e4825b
commit 0ea2789d8d
3 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,18 @@
update_vim_help() {
echo -n "Updating Vim help tags..."
/usr/bin/vim --noplugin -u NONE -U NONE \
--cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
echo "done."
}
post_install() {
update_vim_help
}
post_upgrade() {
update_vim_help "$1"
}
post_remove() {
update_vim_help
}