aboutsummaryrefslogtreecommitdiffstats
path: root/paredit/paredit.install
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--paredit/paredit.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/paredit/paredit.install b/paredit/paredit.install
new file mode 100644
index 0000000..210acab
--- /dev/null
+++ b/paredit/paredit.install
@@ -0,0 +1,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
+}