archpkgs/neovim-qt-git/neovim-qt-git.install
Gabriel Ebner e9b1df8b1b git subrepo clone --branch=master https://aur.archlinux.org/neovim-qt-git.git
subrepo:
  subdir:   "neovim-qt-git"
  merged:   "767875b"
upstream:
  origin:   "https://aur.archlinux.org/neovim-qt-git.git"
  branch:   "master"
  commit:   "767875b"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2021-08-05 20:20:05 +02:00

18 lines
406 B
Plaintext

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
}