blob: e425cb6f12de9f1dc35061cc3333cf587fa46a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
# Need to run helpztags since we're overwriting /u/s/v/a/d/tags whenever
# vim-runtime is install/upgraded which breaks the help for other vim addons
if which helpztags >/dev/null 2>&1; then
helpztags /usr/share/vim/addons/doc
fi
#DEBHELPER#
exit 0
|