summarylogtreecommitdiffstats
path: root/install.sh
blob: f010aa8af641376e3636d2c93158c2a8ea2f1c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}

post_remove() {
  update_vim_help
}