updated on Thu Jan 19 12:17:07 UTC 2012
[aur-mirror.git] / vim-omlet / vimdoc.install
blobe8d965fa1d39d39e09453f46a471efe248839343
1 update_tags() {
2     echo -n "Updating vim help tags..."
3     /usr/bin/vim --noplugins -u NONE -U NONE \
4         --cmd ":helptags /usr/share/vim/doc" --cmd ":q" > /dev/null 2>&1
5     echo " done."
8 post_install() {
9   update_tags $1
10   echo "Add lines like \"filetype plugin on\", \"filetype indent on\" to your .vimrc"
11   echo "in order to enable OMLet."
15 post_upgrade() {
16   update_tags $1
19 post_remove() {
20   update_tags $1
23 op=$1
24 shift
26 $op $*