blob: 9d4248671d928bf51d0b54fe92d03eff2fd4c81d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
echo -n "Updating vim help tags..."
/usr/bin/vim --noplugins -u NONE -U NONE \
--cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
echo "done."
echo "To use neobundle, please check the file in /usr/share/neobundle/vimrc.sample"
echo "and update your ~/.vimrc file, accordingly"
}
post_upgrade() {
post_install $1
}
post_remove() {
echo -n "Updating vim help tags..."
/usr/bin/vim --noplugins -u NONE -U NONE \
--cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
echo "done."
echo "Please remember to remove neobundles from your ~/.vimrc file"
echo "and from your ~/.vim directory!"
}
|