mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2024-10-31 12:18:46 -07:00
19 lines
315 B
Plaintext
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
|
|
}
|