blob: 8dc12a08533318a714b8dea1b2b41f2d5bd6d39a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "NOTE: If you want eclim to recognize the pydev and wst Eclipse features,"
echo ">>>>> install those first, then rebuild and install eclim."
vim -e -u NONE --cmd "helptags /usr/share/vim/vimfiles/eclim/doc/" --cmd quit
}
post_upgrade() {
echo "NOTE: If you want eclim to recognize the pydev and wst Eclipse features,"
echo ">>>>> install those first, then rebuild and install eclim."
vim -e -u NONE --cmd "helptags /usr/share/vim/vimfiles/eclim/doc/" --cmd quit
}
|