summarylogtreecommitdiffstats
path: root/emacs-yaml-mode.install
blob: e8819e5971eae7b83afd4da9d495da4b3034feb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install () {

cat << EOF

==> Add this code to your .emacs file to use the mode:

(require 'yaml-mode)
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))

EOF
}

post_upgrade () {
	post_install $1
}

op=$1
shift
$op $*