blob: 4da61dc3ea0edf788333fcd5e5a4c996ce590c45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo "
=> Autoloading:
------------
In your .emacs or .init.el
(add-to-list 'auto-mode-alist '(\"\\\\.lsp\\\\'\" . newlisp-mode))
(add-to-list 'interpreter-mode-alist '("newlisp" . newlisp-mode))
=> Newlisp is started with the Emacs command M-x newlisp-mode."
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|