updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / emacs-haml-mode-git / emacs-haml-mode-git.install
blob307fff85ead4ff2595b8985b76a665aa58f35a48
1 post_install() {
2     cat <<EOF
3 ==> Add this code to your $HOME/.emacs to use haml-mode:
5 (require 'haml-mode)
7 ==> And this code if you want to remove tabs from HAML files upon saving:
9 (add-hook 'haml-mode-hook 
10   '(lambda () (add-hook 'local-write-file-hooks 
11     '(lambda () (save-excursion (untabify (point-min) (point-max)))))))
13 EOF
17 post_upgrade() {
18         post_install $1