1
0
mirror of https://github.com/TrentSPalmer/aur-packages.git synced 2025-01-11 04:18:23 -08:00
aur-packages/vim-hug-neovim-rpc-git/vim-hug-neovim-rpc.install

19 lines
315 B
Plaintext

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
}