aboutsummaryrefslogblamecommitdiffstats
path: root/paredit/paredit.install
blob: 210acab0ad267d8d0a8ca995519c66c774253760 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                        
post_install() {
    cat << 'EOF'
==> Put this in your $HOME/.emacs file to enable autoloading of paredit:

(autoload 'paredit-mode "paredit"
  "Minor mode for pseudo-structurally editing Lisp code." t)

==> Toggle Paredit Mode with `M-x paredit-mode RET', or enable it
==> always in a major mode `M' (e.g., `lisp' or `scheme') with:

(add-hook M-mode-hook (lambda () (paredit-mode +1)))
EOF
}

post_upgrade() {
    post_install
}