summarylogtreecommitdiffstats
path: root/neovim-qt-git.install
blob: 46c1bf1f0bd264a9dd7ffaf89081c4a4bda80093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
  echo -n ":: Updating nvim help tags..."

  # updates the nvim help tags index to include the doc files that were
  # just installed with neovim-qt-git, e.g. nvim_gui_shim.txt
  /usr/bin/nvim --noplugin -u NONE -U NONE \
    --cmd ":helptags /usr/share/nvim/runtime/doc" --cmd ":q" > /dev/null 2>&1
  echo "done."
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install
}