blob: 3fde4a79b5e8700883d6bd6328583f1d9b87321b (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
cat << EOF
==> Put this in your $HOME/.emacs file to enable autoloading of pkgbuild-mode
==> and auto-recognition of "PKGBUILD" files:
(autoload 'pkgbuild-mode "pkgbuild-mode.el" "PKGBUILD mode." t)
(setq auto-mode-alist (append '(("/PKGBUILD$" . pkgbuild-mode)) auto-mode-alist))
EOF
}
|