blob: b4c6403c6dc97e0e5fc6d0b7e340a02e19bc0cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "Consider runing 'zls --config' to setup initial configuration"
echo ""
echo "This is not required, but it is highly recommended"
}
post_upgrade() {
echo "Consider re-running 'zls --config' to reconfigure the language server"
echo ""
echo "Some options may have changed when upgrading from $2 -> $1"
echo ""
echo "Make sure to backup your old configuration!"
}
|