blob: d55731df2fe9810dcff24c0b1869ab94686b5ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo " Add to your .vimrc file:"
echo "filetype plugin on"
echo "let g:pydiction_location='/usr/share/pydiction/complete-dict'"
}
post_upgrade() {
echo " Add to your .vimrc file:"
echo "filetype plugin on"
echo "let g:pydiction_location='/usr/share/pydiction/complete-dict'"
}
# vim:set ts=2 sw=2 et:
|