Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.misc > #23624

Re: on Gnus

From Julieta Shem <jshem@yaxenu.org>
Newsgroups comp.misc
Subject Re: on Gnus
Date 2023-12-07 21:26 -0300
Organization A noiseless patient Spider
Message-ID <878r65mtdw.fsf@yaxenu.org> (permalink)
References (9 earlier) <udim22$74l3$2@dont-email.me> <87msxvkqbg.fsf@bsb.me.uk> <87r0k3w9m3.fsf_-_@yaxenu.org> <87y1e68qj0.fsf@enoch.nodomain.nowhere> <87zfymm60l.fsf@tilde.institute>

Show all headers | View raw


yeti <yeti@tilde.institute> writes:

> Mike Spencer <mds@bogus.nodomain.nowhere> writes:
>
>> Julieta Shem <jshem@yaxenu.org> writes:
>>
>>> True.  Even if you're steeped in EMACS, Gnus is still hard to get to
>>> grips with.  But surely the greatest feature of Gnus is precisely that
>>> it runs in the GNU EMACS.
>
> Ohhhh yes, and too many functions on too many unprefixed keys just
> increase the probability of accidentally performing something unwanted
> by off-by-one typos.  

Lol.  That happens sometimes.

Speaking of Gnus, let me share some of my customization.  The summary
buffer should not let names vary in width because that doesn't let
subjects align very well and the thread shapes are important to be
viewed properly.  There should be some order in how we see data on the
screen.  It shouldn't be messy.

I think we hardly care with whom we're talking to, so I reduced people's
names to three letters.  I also like to see the article number in the
local NNTP server --- it hints you quickly at which articles arrived in
what order.  Dates are also important, but usually day and month is
enough.

--8<---------------cut here---------------start------------->8---
(setq gnus-group-line-format "[%4U unread, %T ticked] %G (%t,%SL%L%B)\n")
(setq gnus-group-mode-line-format "%T%:%S")

(setq gnus-summary-line-format "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n")
(setq gnus-summary-line-format "%z[%U][%N] %d %ua%B%* %(%S%) [L%Lm%Os%i]\n")

(defun gnus-user-format-function-o (headers)
  (letrec ((date-string (aref headers 3)))
    (format-time-string "%m-%d %H.%M.%S" (date-to-time date-string))))

(defun name-clean-up (name)
  (defun alphanum-p (c)
    (or (and (<= 65 c) (<= c 90)) (and (<= 97 c) (<= c 122))))
  (remove-if-not 'alphanum-p name))

(defun gnus-user-format-function-a (headers)
  (letrec ((from (aref headers 2))
           (names (split-string from))
           (last-name (car (last names))))
    (upcase (if (< (length from) 3) "XXX" (substring (name-clean-up from) 0 3)))))
--8<---------------cut here---------------end--------------->8---

Back to comp.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Recent spam on  comp.lang.c (was Re: bart again (UCX64)) Spiros Bousbouras <spibou@gmail.com> - 2023-09-08 12:22 +0000
  Re: Recent spam on  comp.lang.c (was Re: bart again (UCX64)) Dan Purgert <dan@djph.net> - 2023-09-08 13:32 +0000
    Re: Recent spam on comp.lang.c (was Re: bart again (UCX64)) candycanearter07 <no@thanks.net> - 2023-09-08 08:36 -0500
      Re: Recent spam on comp.lang.c (was Re: bart again (UCX64)) Dan Purgert <dan@djph.net> - 2023-09-08 14:06 +0000
        Re: Recent spam on comp.lang.c (was Re: bart again (UCX64)) candycanearter07 <no@thanks.net> - 2023-09-08 18:32 -0500
          Re: Recent spam on comp.lang.c snipeco.2@gmail.com (Sn!pe) - 2023-09-09 09:42 +0100
          Re: Recent spam on comp.lang.c (was Re: bart again (UCX64)) Anton Shepelev <anton.txt@gmail.moc> - 2023-09-09 13:54 +0300
            Re: Recent spam on comp.lang.c snipeco.2@gmail.com (Sn!pe) - 2023-09-09 12:10 +0100
              Re: Recent spam on comp.lang.c candycanearter07 <no@thanks.net> - 2023-09-09 16:04 -0500
                Re: Recent spam on comp.lang.c snipeco.2@gmail.com (Sn!pe) - 2023-09-09 22:33 +0100
                Re: Recent spam on comp.lang.c Lafe <lafe@lafes.invalid> - 2023-09-11 03:23 +0000
  How to change the Subject of a Usenet article (Was: Re: Recent spam on  comp.lang.c) snipeco.2@gmail.com (Sn!pe) - 2023-09-08 15:50 +0100
    Re: How to change the Subject of a Usenet article (Was: Re: Recent spam on comp.lang.c) candycanearter07 <no@thanks.net> - 2023-09-08 18:27 -0500
      Re: How to change the Subject of a Usenet article snipeco.2@gmail.com (Sn!pe) - 2023-09-09 09:57 +0100
        Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-09 15:54 -0500
          Re: How to change the Subject of a Usenet article Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-09-09 22:08 +0100
            Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-09 16:18 -0500
              Re: How to change the Subject of a Usenet article Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-09-09 22:57 +0100
                Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-09 17:14 -0500
                Re: How to change the Subject of a Usenet article Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-09-09 23:36 +0100
                Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-09 17:38 -0500
            on Gnus (Was: Re: How to change the Subject of a Usenet article) Julieta Shem <jshem@yaxenu.org> - 2023-12-03 13:09 -0300
              Re: on Gnus (Was: Re: How to change the Subject of a Usenet article) Mike Spencer <mds@bogus.nodomain.nowhere> - 2023-12-07 02:39 -0400
                Re: on Gnus yeti <yeti@tilde.institute> - 2023-12-07 14:39 +0000
                Re: on Gnus Julieta Shem <jshem@yaxenu.org> - 2023-12-07 21:26 -0300
                Re: on Gnus yeti <yeti@tilde.institute> - 2023-12-08 01:04 +0000
                Re: on Gnus yeti <yeti@tilde.institute> - 2023-12-08 01:43 +0000
                Re: on Gnus Julieta Shem <jshem@yaxenu.org> - 2023-12-07 21:20 -0300
                Re: on Gnus Joerg Mertens <joerg-mertens@t-online.de> - 2023-12-09 10:33 +0100
                Re: on Gnus Julieta Shem <jshem@yaxenu.org> - 2023-12-10 04:05 -0300
                Re: on Gnus Joerg Mertens <joerg-mertens@t-online.de> - 2023-12-10 12:16 +0100
                Re: on Gnus Julieta Shem <jshem@yaxenu.org> - 2023-12-10 13:19 -0300
          Re: How to change the Subject of a Usenet article Rich <rich@example.invalid> - 2023-09-09 21:28 +0000
            Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-09 16:29 -0500
            Re: How to change the Subject of a Usenet article Spiros Bousbouras <spibou@gmail.com> - 2023-09-10 08:24 +0000
              Re: How to change the Subject of a Usenet article issdr <p_u_n_k_i_n_d@yahoo.it> - 2023-09-10 11:04 +0200
                on noffle and leafnode (Was: Re: How to change the Subject of a Usenet article) Julieta Shem <jshem@yaxenu.org> - 2023-12-03 13:11 -0300
              Re: How to change the Subject of a Usenet article candycanearter07 <no@thanks.net> - 2023-09-10 10:19 -0500
                Re: How to change the Subject of a Usenet article De ongekruisigde <ongekruisigde@news.eternal-september.org> - 2023-09-10 15:49 +0000
                Re: How to change the Subject of a Usenet article Dan Purgert <dan@djph.net> - 2023-09-11 07:46 +0000
            Re: How to change the Subject of a Usenet article rdh <rdh@tilde.institute> - 2023-09-11 11:24 -0500
    Re: How to change the Subject of a Usenet article (Was: Re: Recent spam on  comp.lang.c) Kaz Kylheku <864-117-4973@kylheku.com> - 2023-09-09 03:16 +0000
      Re: How to change the Subject of a Usenet article snipeco.2@gmail.com (Sn!pe) - 2023-09-09 09:57 +0100
        Re: How to change the Subject of a Usenet article Kaz Kylheku <864-117-4973@kylheku.com> - 2023-09-09 15:10 +0000
          Re: How to change the Subject of a Usenet article snipeco.2@gmail.com (Sn!pe) - 2023-09-09 16:26 +0100
  on writing subject lines (Was: Re: Recent spam on comp.lang.c) Julieta Shem <jshem@yaxenu.org> - 2023-12-03 13:01 -0300
    Re: on writing subject lines (Was: Re: Recent spam on comp.lang.c) Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2023-12-03 16:39 +0000
      Re: on writing subject lines Julieta Shem <jshem@yaxenu.org> - 2023-12-03 14:05 -0300
      Re: on writing subject lines (Was: Re: Recent spam on comp.lang.c) candycanearter07 <no@thanks.net> - 2023-12-03 14:42 -0600
        Re: on writing subject lines (Was: Re: Recent spam on comp.lang.c) kludge@panix.com (Scott Dorsey) - 2023-12-04 23:46 +0000
          Re: on writing subject lines (Was: Re: Recent spam on comp.lang.c) Julieta Shem <jshem@yaxenu.org> - 2023-12-05 14:53 -0300
            Re: on writing subject lines Julieta Shem <jshem@yaxenu.org> - 2023-12-05 15:25 -0300
              Re: on writing subject lines scott@slp53.sl.home (Scott Lurndal) - 2023-12-05 19:33 +0000
    Re: on writing subject lines (Was: Re: Recent spam on comp.lang.c) Vir Campestris <vir.campestris@invalid.invalid> - 2023-12-03 21:29 +0000
      Re: on writing subject lines Julieta Shem <jshem@yaxenu.org> - 2023-12-04 20:34 -0300
        Re: on writing subject lines Grant Taylor <gtaylor@tnetconsulting.net> - 2023-12-05 14:18 -0600
          Re: on writing subject lines Julieta Shem <jshem@yaxenu.org> - 2023-12-05 18:22 -0300
            Re: on writing subject lines scott@slp53.sl.home (Scott Lurndal) - 2023-12-05 21:36 +0000
              Re: on writing subject lines Grant Taylor <gtaylor@tnetconsulting.net> - 2023-12-05 15:46 -0600
            Re: on writing subject lines Grant Taylor <gtaylor@tnetconsulting.net> - 2023-12-05 15:45 -0600
              Re: on writing subject lines Julieta Shem <jshem@yaxenu.org> - 2023-12-05 19:10 -0300
                Re: on writing subject lines Julio Di Egidio <julio@diegidio.name> - 2023-12-05 22:15 -0800
            Re: on writing subject lines Dan Purgert <dan@djph.net> - 2023-12-05 21:45 +0000
            Re: on writing subject lines Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-12-05 14:40 -0800
            Re: on writing subject lines Jan van den Broek <balglaas@dds.nl> - 2023-12-06 06:54 +0000
              Re: on writing subject lines Julio Di Egidio <julio@diegidio.name> - 2023-12-05 23:19 -0800

csiph-web