From 899a10b6d9cb328d87921d7dbdb051eca5a64e2d Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Sat, 9 Sep 2017 17:44:24 +0100 Subject: [PATCH] docs: change muttrc references to neomuttrc --- .gitignore | 4 +- doc/Makefile.am | 42 ++-- doc/manual.xml.head | 222 ++++++++++---------- doc/{Muttrc.head => neomuttrc.head} | 0 doc/{muttrc.man.head => neomuttrc.man.head} | 0 doc/{muttrc.man.tail => neomuttrc.man.tail} | 0 6 files changed, 139 insertions(+), 129 deletions(-) rename doc/{Muttrc.head => neomuttrc.head} (100%) rename doc/{muttrc.man.head => neomuttrc.man.head} (100%) rename doc/{muttrc.man.tail => neomuttrc.man.tail} (100%) diff --git a/.gitignore b/.gitignore index 8f7b61b0a..e71021fa4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,8 +33,8 @@ doc/*.html doc/makedoc doc/manual.txt doc/manual.xml -doc/Muttrc -doc/muttrc.man +doc/neomuttrc +doc/neomuttrc.man po/*.gmo po/POTFILES po/stamp-po diff --git a/doc/Makefile.am b/doc/Makefile.am index f498bc001..f39cfe4fa 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -14,8 +14,8 @@ noinst_PROGRAMS = makedoc EXTRA_DIST = $(BUILT_DISTFILES) chunk.xsl gen-map-doc html.xsl makedoc.c \ makedoc_defs.h manual.xml.head manual.xml.tail mbox.5 mmdf.5 \ - mutt-1.7.0-syntax.vim mutt.css neomutt.man mutt.xsl Muttrc Muttrc.head \ - muttrc.man.head muttrc.man.tail neomutt-syntax.vim PGP-Notes.txt \ + mutt-1.7.0-syntax.vim mutt.css neomutt.man mutt.xsl neomuttrc neomuttrc.head \ + neomuttrc.man.head neomuttrc.man.tail neomutt-syntax.vim PGP-Notes.txt \ smime-notes.txt pgpewrap.1 pgpring.1 smime_keys.1 CHUNKED_DOCFILES = advancedusage.html configuration.html gettingstarted.html \ @@ -34,14 +34,14 @@ topsrcdir_DOCFILES = ChangeLog.md CODE_OF_CONDUCT.md COPYRIGHT INSTALL \ all: makedoc-all makedoc-all: $(CHUNKED_DOCFILES) index.html manual.html manual.txt neomutt.1 \ - Muttrc muttrc.man neomutt-syntax.vim + neomuttrc neomuttrc.man neomutt-syntax.vim install-data-local: makedoc-all $(MKDIR_P) $(DESTDIR)$(mandir)/man1 $(MKDIR_P) $(DESTDIR)$(mandir)/man5 $(MKDIR_P) $(DESTDIR)$(sysconfdir) $(INSTALL) -m 644 neomutt.1 $(DESTDIR)$(mandir)/man1/neomutt.1 - $(INSTALL) -m 644 muttrc.man $(DESTDIR)$(mandir)/man5/muttrc.5 + $(INSTALL) -m 644 neomuttrc.man $(DESTDIR)$(mandir)/man5/neomuttrc.5 $(INSTALL) -m 644 $(srcdir)/smime_keys.1 $(DESTDIR)$(mandir)/man1/smime_keys.1 $(INSTALL) -m 644 $(srcdir)/pgpewrap.1 $(DESTDIR)$(mandir)/man1/pgpewrap.1 $(INSTALL) -m 644 $(srcdir)/pgpring.1 $(DESTDIR)$(mandir)/man1/pgpring.1 @@ -58,13 +58,13 @@ install-data-local: makedoc-all -for f in $(HTML_DOCFILES); do \ $(INSTALL) -m 644 $(srcdir)/$$f $(DESTDIR)$(docdir); \ done - $(INSTALL) -m 644 Muttrc $(DESTDIR)$(sysconfdir)/Muttrc.dist - -if [ -f $(DESTDIR)$(pkgdatadir)/Muttrc ]; then \ - mv $(DESTDIR)$(pkgdatadir)/Muttrc* $(DESTDIR)$(sysconfdir); \ - elif [ -f $(DESTDIR)$(pkgdatadir)/../Muttrc ]; then \ - mv $(DESTDIR)$(pkgdatadir)/../Muttrc* $(DESTDIR)$(sysconfdir); \ - elif [ ! -f $(DESTDIR)$(sysconfdir)/Muttrc ]; then \ - $(INSTALL) -m 644 Muttrc $(DESTDIR)$(sysconfdir); \ + $(INSTALL) -m 644 neomuttrc $(DESTDIR)$(sysconfdir)/neomuttrc.dist + -if [ -f $(DESTDIR)$(pkgdatadir)/neomuttrc ]; then \ + mv $(DESTDIR)$(pkgdatadir)/neomuttrc* $(DESTDIR)$(sysconfdir); \ + elif [ -f $(DESTDIR)$(pkgdatadir)/../neomuttrc ]; then \ + mv $(DESTDIR)$(pkgdatadir)/../neomuttrc* $(DESTDIR)$(sysconfdir); \ + elif [ ! -f $(DESTDIR)$(sysconfdir)/neomuttrc ]; then \ + $(INSTALL) -m 644 neomuttrc $(DESTDIR)$(sysconfdir); \ fi -$(INSTALL) -m 644 $(srcdir)/neomutt-syntax.vim $(DESTDIR)$(docdir) @@ -72,14 +72,14 @@ uninstall-local: for f in neomutt.1 smime_keys.1 pgpewrap.1 pgpring.1; do \ rm -f $(DESTDIR)$(mandir)/man1/$$f; \ done - for f in muttrc.5 mbox.5 mmdf.5; do \ + for f in neomuttrc.5 mbox.5 mmdf.5; do \ rm -f $(DESTDIR)$(mandir)/man5/$$f; \ done for f in $(srcdir_DOCFILES) $(topsrcdir_DOCFILES) $(HTML_DOCFILES); do \ rm -f $(DESTDIR)$(docdir)/$$f; \ done -rm -f $(DESTDIR)$(docdir)/manual.txt - for i in Muttrc; do \ + for i in neomuttrc; do \ if cmp -s $(DESTDIR)$(sysconfdir)/$$i.dist $(DESTDIR)$(sysconfdir)/$$i; then \ rm $(DESTDIR)$(sysconfdir)/$$i; \ fi; \ @@ -93,9 +93,9 @@ manual.txt: manual.html LC_ALL=C lynx -dump -nolist -with_backspaces -display_charset=us-ascii manual.html > $@ || \ LC_ALL=C elinks -dump -no-numbering -no-references manual.html | sed -e 's,\\001, ,g' > $@ -Muttrc: $(top_srcdir)/init.h makedoc$(EXEEXT) $(srcdir)/Muttrc.head - sed -e 's,[@]docdir[@],$(docdir),' $(srcdir)/Muttrc.head > Muttrc - $(CPP) $(AM_CPPFLAGS) $(DEFS) $(CPPFLAGS) -D_MAKEDOC -C $(top_srcdir)/init.h | ./makedoc$(EXEEXT) -c >> Muttrc +neomuttrc: $(top_srcdir)/init.h makedoc$(EXEEXT) $(srcdir)/neomuttrc.head + sed -e 's,[@]docdir[@],$(docdir),' $(srcdir)/neomuttrc.head > neomuttrc + $(CPP) $(AM_CPPFLAGS) $(DEFS) $(CPPFLAGS) -D_MAKEDOC -C $(top_srcdir)/init.h | ./makedoc$(EXEEXT) -c >> neomuttrc manual.html: manual.xml $(srcdir)/html.xsl $(srcdir)/mutt.xsl $(srcdir)/mutt.css -xsltproc --nonet -o $@ $(srcdir)/html.xsl manual.xml @@ -110,7 +110,7 @@ validate: manual.xml spellcheck: -aspell -d american --mode=sgml --encoding=utf-8 -p $(srcdir)/mutt.pwl check manual.xml.head - -aspell -d american --mode=nroff --encoding=utf-8 -p $(srcdir)/mutt.pwl check muttrc.man.head + -aspell -d american --mode=nroff --encoding=utf-8 -p $(srcdir)/mutt.pwl check neomuttrc.man.head -aspell -d american --mode=ccpp --encoding=utf-8 -p $(srcdir)/mutt.pwl check $(top_srcdir)/init.h sortcheck: manual.xml @@ -120,14 +120,14 @@ sortcheck: manual.xml rm -rf vars.tmp.1 vars.tmp.2 clean-local: - rm -f *.html neomutt.1 muttrc.man + rm -f *.html neomutt.1 neomuttrc.man -DISTCLEANFILES = manual.txt manual.html manual.xml Muttrc +DISTCLEANFILES = manual.txt manual.html manual.xml neomuttrc -muttrc.man: makedoc$(EXEEXT) $(top_srcdir)/init.h muttrc.man.head muttrc.man.tail +neomuttrc.man: makedoc$(EXEEXT) $(top_srcdir)/init.h neomuttrc.man.head neomuttrc.man.tail $(MAKEDOC_CPP) $(top_srcdir)/init.h | \ ./makedoc$(EXEEXT) -m | \ - cat $(srcdir)/muttrc.man.head - $(srcdir)/muttrc.man.tail > $@ + cat $(srcdir)/neomuttrc.man.head - $(srcdir)/neomuttrc.man.tail > $@ EDIT = sed -e 's,@sysconfdir\@,$(sysconfdir),g' \ -e 's,@bindir\@,$(bindir),g' \ diff --git a/doc/manual.xml.head b/doc/manual.xml.head index 1c75d5d09..00b4d3e80 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -296,7 +296,7 @@ know NeoMutt you could skip ahead to the main Sidebar guide. If you just want to get started, you could use the sample - Sidebar muttrc. + Sidebar neomuttrc. To check if NeoMutt supports Sidebar, look for the string +sidebar in the neomutt version. @@ -532,7 +532,7 @@ Cars 4| 3 + Feb 28 Imogen Baker (193) Pechora Sea Sidebar Basics The most important variable is $sidebar_visible. You can set this in your - muttrc, or bind a key to the function + neomuttrc, or bind a key to the function <sidebar-toggle-visible>. set sidebar_visible # Make the Sidebar visible by default @@ -1373,7 +1373,7 @@ color sidebar_divider color8 default - .muttrc commands + .neomuttrc commands addresses and aliases @@ -2893,7 +2893,7 @@ color sidebar_divider color8 default config. It looks for NeoMutt config files before NeoMutt config files and versioned config before plain config. For example: - +
NeoMutt config file search order @@ -2912,7 +2912,7 @@ color sidebar_divider color8 default This allows the user to create separate NeoMutt and NeoMutt config files on the same system. - + Location of system config files NeoMutt will search for a system config file in a neomutt directory in several places. First it searches @@ -2928,7 +2928,7 @@ color sidebar_divider color8 default NeoMutt will read just one file, the first file it finds, from the list below. -
+
NeoMutt system config file locations @@ -2950,14 +2950,14 @@ color sidebar_divider color8 default Note the case of the filename - /etc/neomutt/neomuttrc-20170912 + /etc/neomuttrc-20170912 NeoMutt release version - /etc/neomutt/neomuttrc + /etc/neomuttrc - /etc/neomutt/Muttrc + /etc/Muttrc Note the case of the filename @@ -2976,7 +2976,7 @@ color sidebar_divider color8 default
- + Location of user config files NeoMutt will search for a user config file in several places. First it looks in the directory specified in the @@ -2992,7 +2992,7 @@ color sidebar_divider color8 default NeoMutt will read just one file, the first file it finds, from the list below. - +
NeoMutt user config file locations @@ -3013,24 +3013,34 @@ color sidebar_divider color8 default ~/.config/neomutt/muttrc - ~/.neomuttrc-20170912 + ~/.neomutt/neomuttrc-20170912 NeoMutt release version - ~/.neomuttrc + ~/.neomutt/neomuttrc - ~/.muttrc + ~/.neomutt/muttrc - ~/.neomutt/neomuttrc-20170912 + ~/.mutt/neomuttrc-20170912 NeoMutt release version - ~/.neomutt/neomuttrc + ~/.mutt/neomuttrc - ~/.neomutt/muttrc + ~/.mutt/muttrc + + + ~/.neomuttrc-20170912 + NeoMutt release version + + + ~/.neomuttrc + + + ~/.muttrc @@ -3038,7 +3048,7 @@ color sidebar_divider color8 default - + Syntax of Initialization Files An initialization file consists of a series of commands. Each line of the file may @@ -3329,13 +3339,13 @@ alias theguys manny, moe, jack sourced. Consequently, you can have multiple alias files, or you can have all aliases defined in your - .muttrc. + .neomuttrc. On the other hand, the <create-alias> function can use only one file, the one pointed to by the $alias_file variable (which is - ~/.muttrc by default). This file is not special either, + ~/.neomuttrc by default). This file is not special either, in the sense that NeoMutt will happily append aliases to any file, but in order for the new aliases to take effect you need to explicitly @@ -3408,7 +3418,7 @@ set alias_file=~/.mail_aliases The alias menu is the list of your personal aliases as defined in your - .muttrc. It is the mapping from a short alias + .neomuttrc. It is the mapping from a short alias name to the full email address(es) of the recipient(s). @@ -3712,7 +3722,7 @@ bind index gg first-entry command before loading. If a mailbox matches multiple folder-hooks, they are executed in the order given in the - .muttrc. + .neomuttrc. The regexp parameter has mailbox shortcut expansion performed on the first character. See @@ -3812,7 +3822,7 @@ folder-hook work "set sort=threads" will work regardless of the current key bindings, so they are not dependent on the user having particular key definitions. This makes them more robust and portable, and also facilitates defining of macros in - files used by more than one user (e.g., the system Muttrc). + files used by more than one user (e.g., the system neomuttrc). Optionally you can specify a descriptive text after sequence, which is shown in the help screens if they contain a description. @@ -4653,7 +4663,7 @@ unignore posted-to: Organization:header field to all of your outgoing messages, you can put the command something like shown in in your - .muttrc. + .neomuttrc. Defining custom headers my_hdr Organization: A Really Big Company, Anytown, USA @@ -4846,7 +4856,7 @@ save-hook aol\\.com$ +spam send-hook or reply-hook, when multiple matches occur, commands are executed in the order they are specified in the - .muttrc(for that type of hook). + .neomuttrc(for that type of hook). Example: send-hook work " @@ -4893,7 +4903,7 @@ save-hook aol\\.com$ +spam pattern matches the message to be displayed. When multiple matches occur, commands are executed in the order they are specified in the - .muttrc. + .neomuttrc. See for information on the exact format of pattern. @@ -5569,7 +5579,7 @@ mailboxes $my_mx +mailbox3 This command allows the inclusion of initialization commands from other files. For example, I place all of my aliases in ~/.mail_aliases so that I can make my - ~/.muttrc readable and keep my aliases private. + ~/.neomuttrc readable and keep my aliases private. If the filename begins with a tilde ( ~), it will be expanded to the path of your home directory. @@ -5936,7 +5946,7 @@ mailboxes $my_mx +mailbox3 The regular expression can be enclosed/delimited by either " or ' which is useful if the regular expression includes a white-space character. See - for more information on " and ' + for more information on " and ' delimiter processing. To match a literal " or ' you must preface it with \ (backslash). @@ -7376,7 +7386,7 @@ folder-hook '\@imap.example.com' "set sort=threads" Keep in mind that mailbox shortcut expansion on the regexp parameter takes place when the hook is initially parsed, not when the hook is matching against a mailbox. When NeoMutt starts up and is reading - the .muttrc, some mailbox shortcuts may not be usable. For example, the + the .neomuttrc, some mailbox shortcuts may not be usable. For example, the "current mailbox" shortcut, ^, will expand to an empty string because no mailbox has been opened yet. NeoMutt will issue an error for this case or if the mailbox shortcut results in an empty regexp. @@ -7597,7 +7607,7 @@ roessler@does-not-exist.org Thomas Roessler mutt pgp lists and subscribecommands in your - .muttrc. + .neomuttrc. Now that NeoMutt knows what your mailing lists are, it can do several things, the first of which is the ability to show the name of a list through which you received a message (i.e., of a subscribed list) in the @@ -9044,7 +9054,7 @@ attachments -I message/external-body Entering the command attachments?as a command will list your - current settings in Muttrc format, so that it can be pasted + current settings in neomuttrc format, so that it can be pasted elsewhere. @@ -9088,7 +9098,7 @@ attachments -I message/external-body unmime_lookup command may be used to disable this feature for any particular MIME type if it had been set, for example, in a global - .muttrc. + .neomuttrc. @@ -9606,8 +9616,8 @@ folder-hook imap://user@host2/ 'set folder=imap://host2/ ; set record=+INBOX/Sen color attach_headers foreground background pattern - - Muttrc + + neomuttrc # Example NeoMutt config file for the attach-headers-color feature. @@ -9631,7 +9641,7 @@ color attach_headers brightmagenta default "can't handle these mu color attach_headers brightmagenta default "signature verification suppressed" color attach_headers brightmagenta default "invalid node with packet of type" - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -9717,8 +9727,8 @@ color attach_headers brightmagenta default "invalid node with pac
- - Muttrc + + neomuttrc # Example NeoMutt config file for the compose-to-sender feature. @@ -9728,7 +9738,7 @@ color attach_headers brightmagenta default "invalid node with pac # Compose a new email (not a reply) to the sender bind index,pager @ compose-to-sender - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -10032,8 +10042,8 @@ bind index,pager @ compose-to-sender - - Muttrc + + neomuttrc # Example NeoMutt config file for the compress feature. @@ -10067,7 +10077,7 @@ close-hook '\.pgp$' "pgp -fe YourPgpUserIdOrKeyId < '%t' > '%f'" open-hook '\.gpg$' "gpg --decrypt < '%f' > '%t'" close-hook '\.gpg$' "gpg --encrypt --recipient YourGpgUserIdOrKeyId < '%t' > '%f'" - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -10458,8 +10468,8 @@ close-hook '\.gpg$' "gpg --encrypt --recipient YourGpgUserIdOrKeyId < '%t' & It modifies the behavior of the format strings. - - Muttrc + + neomuttrc # Example NeoMutt config file for the cond-date feature. @@ -10475,7 +10485,7 @@ set index_format='%4C %Z %<[y?%<[m?%<[d?%[%H:%M ]&%[%a %d]>& # %[m This month %[%a %d] Thu 12 # %[y This year %[%b %d] Dec 10 # - Older %[%m/%y ] 06/15 -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -10614,8 +10624,8 @@ set pgp_self_encrypt_as = A4AF18C5582473BD35A1E9CE78BB3D480042198E - - Muttrc + + neomuttrc # Example NeoMutt config file for the encrypt-to-self feature. @@ -10630,7 +10640,7 @@ set smime_self_encrypt = "no" set pgp_self_encrypt = "no" set pgp_self_encrypt_as = "PGP-KEY" -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -10799,8 +10809,8 @@ set pgp_self_encrypt = "no" - - Muttrc + + neomuttrc # Example NeoMutt config file for the forgotten-attachment feature. @@ -10825,7 +10835,7 @@ set attach_keyword = "\\<attach(|ed|ments?)\\>" # set attach_keyword = "\\<(anhängen|angehängt|anhang|anhänge|hängt an)\\>" # Français: # set attach_keyword = "\\<(attaché|attachés|attache|attachons|joint|jointe|joints|jointes|joins|joignons)\\>" -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -10957,8 +10967,8 @@ set attach_keyword = "\\<attach(|ed|ments?)\\>" - - Muttrc + + neomuttrc # Example NeoMutt config file for the global hooks feature. @@ -10972,7 +10982,7 @@ startup-hook 'exec sync-mailbox' # When NeoMutt quits, run this NeoMutt command shutdown-hook 'exec sync-mailbox' - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -11074,8 +11084,8 @@ ifndef sidebar finish - - Muttrc + + neomuttrc # Example NeoMutt config file for the ifdef feature. @@ -11105,7 +11115,7 @@ ifdef imap-fetch-mail 'source ~/.neomutt/imap.rc' # stop reading the current config file. ifndef sidebar finish - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -11260,8 +11270,8 @@ color index-object foreground background pattern - - Muttrc + + neomuttrc # Example NeoMutt config file for the index-color feature. @@ -11289,7 +11299,7 @@ color index_number red default # Message size, %c %l color index_size cyan default - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -11397,8 +11407,8 @@ color index_size cyan default $index_format variable. - - Muttrc + + neomuttrc # Example NeoMutt config file for the initials feature. @@ -11422,7 +11432,7 @@ set index_format='%4C %Z %{%b %d} %I (%?l?%4l&%4c?) %s' # 2 ! Nov 17 SN Rumours ( 555) # 3 + Nov 16 JH Voodoo Child ( 263) # 4 + Nov 16 DH Parallel Lines ( 540) -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -11615,8 +11625,8 @@ set index_format='%4C %Z %{%b %d} %I (%?l?%4l&%4c?) %s' - - Muttrc + + neomuttrc # Example NeoMutt config file for the keywords feature. @@ -11635,7 +11645,7 @@ set xlabel_delimiter = "" # Bind 'y' to edit labels/keywords bind index,pager y edit-label - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -11810,15 +11820,15 @@ bind index,pager y edit-label - - Muttrc + + neomuttrc # Example NeoMutt config file for the limit-current-thread feature. # Limit view to current thread bind index <esc>L limit-current-thread - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -11929,7 +11939,7 @@ bind index <esc>L limit-current-thread Creating a fcc-hook in your - .muttrc + .neomuttrc
@@ -12056,8 +12066,8 @@ else display the subject (%s) and the size of the message in bytes (%c) - - Muttrc + + neomuttrc # Example NeoMutt config file for the nested-if feature. @@ -12081,7 +12091,7 @@ set index_format='%4C %Z %{%b %d} %-25.25n %s%> %<M?%M Msgs &%<l?%l # display the size of the message in bytes (%c) set index_format='%4C %Z %{%b %d} %-25.25n %<M?[%M] %s&%s%* %<l?%l&%c>>' - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -12186,8 +12196,8 @@ set index_format='%4C %Z %{%b %d} %-25.25n %<M?[%M] %s&%s%* %<l?%l& - - Muttrc + + neomuttrc # Example NeoMutt config file for the new-mail feature. @@ -12201,7 +12211,7 @@ set new_mail_command = "" # OS X example: # set new_mail_command="terminal-notifier -title '%v' -subtitle 'New Mail in %f' -message '%n new messages, %u unread.' -activate 'com.apple.Terminal'" # -------------------------------------------------------------------------- -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -12642,8 +12652,8 @@ set new_mail_command = "" - - Muttrc + + neomuttrc # Example NeoMutt config file for the nntp feature. @@ -12715,7 +12725,7 @@ bind index \eG get-parent # get message with Message-Id bind index \CG get-message # -------------------------------------------------------------------------- -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -13220,8 +13230,8 @@ virtual-mailboxes "My INBOX" "notmuch://?query=tag:inbox" - - Muttrc + + neomuttrc # Example NeoMutt config file for the notmuch feature. @@ -13342,7 +13352,7 @@ color index_tag red white "inbox" # this symbol does not use a pattern color index_tags green default # -------------------------------------------------------------------------- -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -13515,8 +13525,8 @@ color index_tags green default - - Muttrc + + neomuttrc # Example NeoMutt config file for the progress feature. @@ -13527,7 +13537,7 @@ color index_tags green default # White text on a red background color progress white red - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -13623,8 +13633,8 @@ color progress white red - - Muttrc + + neomuttrc # Example NeoMutt config file for the quasi-delete feature. @@ -13632,7 +13642,7 @@ color progress white red # from the index, but NOT deleted. bind index,pager Q quasi-delete - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -13715,8 +13725,8 @@ bind index,pager Q quasi-delete - - Muttrc + + neomuttrc # Example NeoMutt config file for the reply-with-xorig feature. @@ -13727,7 +13737,7 @@ bind index,pager Q quasi-delete # is found. set reply_with_xorig = "yes" - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -13860,7 +13870,7 @@ set sort_browser="reverse-size" simple introduction with examples see the Sidebar Howto. If you just want to get started, you could use the sample - Sidebar muttrc. + Sidebar neomuttrc. @@ -14243,8 +14253,8 @@ set sort_browser="reverse-size" - - Muttrc + + neomuttrc # Example NeoMutt config file for the sidebar feature. @@ -14336,7 +14346,7 @@ color sidebar_new green black # Color to give mailboxes containing no new/flagged mail, etc color sidebar_ordinary color245 default # -------------------------------------------------------------------------- -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -14471,8 +14481,8 @@ color sidebar_ordinary color245 default - - Muttrc + + neomuttrc # Example NeoMutt config file for the skip-quoted feature. @@ -14483,7 +14493,7 @@ color sidebar_ordinary color245 default # Show three quoted lines before the reply set skip_quoted_offset = 3 - # vim: syntax=muttrc + # vim: syntax=neomuttrc @@ -14587,8 +14597,8 @@ set skip_quoted_offset = 3 - - Muttrc + + neomuttrc # Example NeoMutt config file for the status-color feature. @@ -14625,7 +14635,7 @@ color status red default '\[([^]]+)\]' 1 # Highlight the mailbox color status brightwhite default 'NeoMutt: ([^ ]+)' 1 # Search for 'NeoMutt: ' but only highlight what comes after it -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -14850,8 +14860,8 @@ color status brightwhite default 'NeoMutt: ([^ ]+)' 1 - - Muttrc + + neomuttrc # Example NeoMutt config file for the 'trash' feature. @@ -14867,7 +14877,7 @@ set trash='/home/flatcap/Mail/Trash' bind index D purge-message # Note: Deleting emails from the 'trash' folder will REALLY delete them. -# vim: syntax=muttrc +# vim: syntax=neomuttrc @@ -15175,7 +15185,7 @@ folder-hook ^pop 'set read_inc=1'
-n - do not read the system Muttrc + do not read the system neomuttrc -p @@ -15228,7 +15238,7 @@ folder-hook ^pop 'set read_inc=1' - muttrc + neomuttrc @@ -15247,7 +15257,7 @@ folder-hook ^pop 'set read_inc=1' - muttrc + neomuttrc diff --git a/doc/Muttrc.head b/doc/neomuttrc.head similarity index 100% rename from doc/Muttrc.head rename to doc/neomuttrc.head diff --git a/doc/muttrc.man.head b/doc/neomuttrc.man.head similarity index 100% rename from doc/muttrc.man.head rename to doc/neomuttrc.man.head diff --git a/doc/muttrc.man.tail b/doc/neomuttrc.man.tail similarity index 100% rename from doc/muttrc.man.tail rename to doc/neomuttrc.man.tail -- 2.40.0