summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..eb4c024
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+### muttrc-mode
+major mode for editing muttrc
+
+#### Documentation:
+
+To build the info file:
+ `makeinfo muttrc-mode.texi -o muttrc-mode.info`
+
+Install it to the system INFOPATH:
+ `install -o root -g root -m644 muttrc-mode.info /usr/share/info/muttrc-mode.info`
+
+#### Installation:
+
+Add these lines to your Emacs config:
+```elisp
+ (autoload 'muttrc-mode "muttrc-mode.el"
+ "Major mode to edit muttrc files" t)
+ (setq auto-mode-alist
+ (append '(("muttrc\\'" . muttrc-mode))
+ auto-mode-alist))
+```
+Install muttrc-mode.el to a directory somewhere in Emacs' load-path.
+
+#### Limitations:
+
+- Multiline commands are not properly handled and their use can lead
+ to unexpected results.