Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neomutt/muttrc-mode-el
🔧 Emacs major mode for editing muttrc
https://github.com/neomutt/muttrc-mode-el
config emacs lisp neomutt syntax
Last synced: 3 months ago
JSON representation
🔧 Emacs major mode for editing muttrc
- Host: GitHub
- URL: https://github.com/neomutt/muttrc-mode-el
- Owner: neomutt
- License: gpl-2.0
- Created: 2018-09-13T23:29:57.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T11:50:05.000Z (over 1 year ago)
- Last Synced: 2023-11-09T13:10:23.423Z (over 1 year ago)
- Topics: config, emacs, lisp, neomutt, syntax
- Language: Emacs Lisp
- Homepage:
- Size: 55.7 KB
- Stars: 9
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### 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.