From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Davison Subject: Re: Re: Org mode and emacs email Date: Tue, 30 Mar 2010 14:34:57 -0400 Message-ID: <87r5n1u08e.fsf@stats.ox.ac.uk> References: <20100329112210.GA3814@wilbury.neustadt.demon.co.uk> <20100330160105.GA5420@wilbury.neustadt.demon.co.uk> <877hotrbor.fsf@gmail.com> <87wrwtu2qn.fsf@stats.ox.ac.uk> <87r5n1u0rf.fsf@belvoir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NwgHe-0006mo-RS for emacs-orgmode@gnu.org; Tue, 30 Mar 2010 14:35:26 -0400 Received: from [140.186.70.92] (port=56695 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NwgHc-0006mg-NM for emacs-orgmode@gnu.org; Tue, 30 Mar 2010 14:35:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NwgHa-0007HW-R2 for emacs-orgmode@gnu.org; Tue, 30 Mar 2010 14:35:24 -0400 Received: from markov.stats.ox.ac.uk ([163.1.210.1]:64653) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwgHa-0007HM-Je for emacs-orgmode@gnu.org; Tue, 30 Mar 2010 14:35:22 -0400 In-Reply-To: <87r5n1u0rf.fsf@belvoir.org> (Henri-Paul Indiogine's message of "Tue, 30 Mar 2010 13:23:32 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Henri-Paul Indiogine Cc: emacs-orgmode Henri-Paul Indiogine writes: > Dan Davison writes: >> http://www.princeton.edu/~ddavison/gnus.png) > > Thanks for the .gnus code. Actually, I do not use .gnus and place all > in .emacs but I do not think that matters. > > I run Ubuntu Karmic + Gnu Emacs 23. Both updated > > Anyway, now my summary buffer looks very much like the image that you pla= ced > on-line. However I have some differences: > > 1. I do not have the arrows. Does that have to do with some unicode > settings that I may have to change? Ah, sorry, I think I should have included the following two variable settings: (setq gnus-thread-sort-functions '(gnus-thread-sort-by-number gnus-thread-sort-by-most-recent-date)) (setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-references) Does that do it? [...] > 3. There are also color differences: I do not have the dates colored > blue as you have. My subject lines are colored green, red, white and > blue according to the marks that they have. I find that useful and > would like to keep those colors. These settings don't alter the faces, just the text. The colours in my image are whatever color-theme-charcoal-black gave me (in the color-themes package.) Dan So the full settings, including the ones I originally posted are: --8<---------------cut here---------------start------------->8--- (setq gnus-thread-sort-functions '(gnus-thread-sort-by-number gnus-thread-sort-by-most-recent-date)) (setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-references) (setq gnus-summary-line-format (concat "%0{%U%R%z%}" "%3{=E2=94=82%}" "%1{%d%}" "%3{=E2=94=82%}" ;; date " " "%4{%-20,20f%}" ;; name " " "%3{=E2=94=82%}" " " "%1{%B%}" "%s\n")) (setq gnus-summary-display-arrow t) ;; http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a673a= 74356e7141f (when window-system (setq gnus-sum-thread-tree-indent " ") (setq gnus-sum-thread-tree-root "") ;; "=E2=97=8F ") (setq gnus-sum-thread-tree-false-root "") ;; "=E2=97=AF ") (setq gnus-sum-thread-tree-single-indent "") ;; "=E2=97=8E ") (setq gnus-sum-thread-tree-vertical "=E2=94=82") (setq gnus-sum-thread-tree-leaf-with-other "=E2=94=9C=E2=94=80=E2=96=BA ") (setq gnus-sum-thread-tree-single-leaf "=E2=95=B0=E2=94=80=E2=96=BA "= )) --8<---------------cut here---------------end--------------->8--- > > Thanks,