repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git]
/
emacs-markdown-mode-git
/
emacs-markdown-mode-git.install
blob
d7a4bc945e2bcf315ceaff07599177e058286486
1
post_install() {
2
cat <<EOF
3
==> Add this code to your $HOME/.emacs to use markdown-mode:
4
5
(autoload 'markdown-mode "markdown-mode.el"
6
"Major mode for editing Markdown files" t)
7
(setq auto-mode-alist
8
(cons '("\.md" . markdown-mode) auto-mode-alist))
9
10
EOF
11
}
12
13
14
post_upgrade() {
15
post_install $1
16
}