[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Some useful key bindings
From: |
Ted Zlatanov |
Subject: |
Re: Some useful key bindings |
Date: |
Tue, 05 Jan 2010 13:14:57 -0600 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/23.1.90 (gnu/linux) |
On Wed, 23 Dec 2009 13:06:29 +0100 Cecil Westerhof <Cecil@decebal.nl> wrote:
CW> Most of the time I am not interested in all the groups. So I wrote a few
CW> functions and key bindings to easily switch between different situation.
CW> I hope it is useful to somebody. Of course the list with topics have to
CW> be changed to fit your situation. It does not work completely correct,
CW> but good enough to share.
CW> The key bindings are 'v t ?', with:
CW> a: show all topics
CW> c: show compact topics
CW> i: show important topics (compact and a few extra)
CW> n: show no topics
...
CW> (defun gnus-topic-show-compact ()
CW> (interactive)
CW> (gnus-topic-hide-all)
CW> (gnus-topic-show-list (list "Bedrijf" "Emacs" "NLLGG" "Privé")))
CW> (defun gnus-topic-show-important ()
CW> (interactive)
CW> (gnus-topic-show-compact)
CW> (gnus-topic-show-list (list "Algemeen" "InfoB" "Language" "Linux"
CW> "Tex" "Web" "InfoP" "Misc")))
This is nice and useful. You could make it a Gnus add-on (living under
contrib/) if you make the compact and important topic lists
customizable.
Ted