emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/gnorb 78f625b 052/449: Documentation and whitespace cha


From: Stefan Monnier
Subject: [elpa] externals/gnorb 78f625b 052/449: Documentation and whitespace changes
Date: Fri, 27 Nov 2020 23:15:06 -0500 (EST)

branch: externals/gnorb
commit 78f625be83a94d10078df3839bf1b892dc47b3d8
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>

    Documentation and whitespace changes
---
 README.org         | 37 ++++++++++++++++++++++++++++++-------
 lisp/gnorb-bbdb.el |  2 +-
 2 files changed, 31 insertions(+), 8 deletions(-)

diff --git a/README.org b/README.org
index 4ee9c26..d1b16e3 100644
--- a/README.org
+++ b/README.org
@@ -37,6 +37,11 @@ supports the notmuch, mairix, and namazu search backends; set
 **** gnorb-bbdb-cite-contact
 Prompt for a BBDB record and insert a string of the type "Bob Smith
 <bob@smith.com>".
+*** User Options
+**** gnorb-bbdb-org-tag-field
+The name of the BBDB xfield that holds Org-related tags. Specified as
+a string with the ":" separator between tags, same as for Org
+headings. Defaults to 'org-tag.
 *** Suggested Keybindings
 #+BEGIN_SRC emacs-lisp
   (eval-after-load "gnorb-bbdb"
@@ -94,12 +99,24 @@ Use `gnorb-org-email-subtree' when the primary purpose of 
the heading
 is the text (or tables or lists or...) of its subtree, and you just
 happen to want to email that content to someone.
 
+**** gnorb-org-agenda-popup-bbdb
+Call this function in an Org Agenda buffer currently displaying an
+`org-tags-view' search (ie called with the "m" or "M" keys). It will
+look through your BBDB database and pop up a BBDB buffer displaying
+all records that match the current tags search.
 *** User Options
 **** gnorb-org-capture-collect-link-p
 When this is set to t, the capture process will always store a link to
 the Gnus message or BBDB record under point, even when the link isn't
 part of the capture template. It can then be added to the captured
 heading with org-insert-link, as usual.
+**** gnorb-org-agenda-popup-bbdb
+Set to t to automatically pop up the BBDB buffer displaying records
+corresponding to the Org Agenda tags search underway. If this is nil
+you can always do it manually with the command of the same name.
+**** gnorb-org-bbdb-popup-layout
+Controls the layout of the Agenda-related BBDB popup, takes the same
+values as bbdb-pop-up-layout.
 *** Suggested Keybindings
 #+BEGIN_SRC emacs-lisp
   (eval-after-load "gnorb-org"
@@ -107,6 +124,7 @@ heading with org-insert-link, as usual.
        (org-defkey org-mode-map (kbd "C-c C") 'gnorb-org-contact-link)
        (org-defkey org-mode-map (kbd "C-c H") 'gnorb-org-handle-mail)
        (org-defkey org-mode-map (kbd "C-c E") 'gnorb-org-email-subtree)
+       (setq gnorb-org-agenda-popup-bbdb t)
        (eval-after-load "org-agenda"
          '(org-defkey org-agenda-mode-map (kbd "H") 'gnorb-org-handle-mail))))
 #+END_SRC
@@ -117,8 +135,17 @@ When called on an email with attached files, prompt for an 
Org heading
 and attach the files to that heading using org-attach.
 **** Using attach with org capture
 Set the new :gnus-attachments key to "t" in a capture template that
-you use on mail messages, and all the attachments on the message will
-be attached to the newly-captured heading.
+you use on mail messages, and you'll be queried to re-attach the
+message's attachments onto the newly-captured heading.
+*** User Options
+**** gnorb-gnus-mail-search-backend
+Specifies the search backend that you use for searching mails.
+Currently supports notmuch, mairix, and namazu: set this option to one
+of those symbols.
+**** gnorb-gnus-capture-always-attach
+Treat all capture templates as if they had the :gnus-attachments key
+set to "t". This only has any effect if you're capturing from a Gnus
+summary or article buffer.
 *** Suggested Keybindings
 #+BEGIN_SRC emacs-lisp
   (eval-after-load "gnorb-gnus"
@@ -142,13 +169,9 @@ be attached to the newly-captured heading.
 ** Wishlist/TODO
 - Support adding X-Org-Id headers to Gnus messages, which point at
   relevant Org headings (possibly not really useful).
-- When doing an Org agenda tag search, pop up a BBDB window showing
-  all records that are marked with that tag. Provide a customizable
-  option for doing this automatically, and bind a key for doing it
-  manually.
 - Provide a command that, when in the Org Agenda, does an email search
   for messages received in the visible date span, or day under point,
-  etc. Make it work in the calendar, as well.
+  etc. Make it work in the calendar, as well?
 - Look into message tagging in Gnus -- what are the options? Is it
   possible to search for tagged messages when we do an Org agenda tag
   search?
diff --git a/lisp/gnorb-bbdb.el b/lisp/gnorb-bbdb.el
index 38897a1..7fc6cf0 100644
--- a/lisp/gnorb-bbdb.el
+++ b/lisp/gnorb-bbdb.el
@@ -72,7 +72,7 @@ records. If you want both, use \"C-u\" before the \"*\"."
 Use the prefix arg to edit the search string first, and the \"*\"
 prefix to search mails from all visible contacts. When using both
 a prefix arg and \"*\", the prefix arg must come first."
-  (interactive (list (bbdb-do-records))) 
+  (interactive (list (bbdb-do-records)))
   (unless (and (eq major-mode 'bbdb-mode)
               (equal (buffer-name) bbdb-buffer-name))
     (error "Only works in the BBDB buffer"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]