info-gnus-english
[Top][All Lists]
Advanced

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

Re: How can I protect the gnus structure?


From: Eric Abrahamsen
Subject: Re: How can I protect the gnus structure?
Date: Mon, 11 Feb 2019 12:05:00 -0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

joakim@verona.se writes:

> Hello,
>
> I misstakenly kill and/or unsubscribe groups pretty often.
> Also I randomly seem to press TAB, breaking my gnus topic structure.
>
> I would like to have some way to guard against such changes, perhaps
> with a prompt. Any idea how to do this?

That happened to me a lot, and I did this:

(eval-after-load "gnus-topic"
  '(progn
     (define-key gnus-topic-mode-map [tab] nil)
     (define-key gnus-topic-mode-map "\C-i" nil)
     ;; I keep deleting groups by accident.
     (define-key gnus-topic-mode-map (kbd "C-k") nil)
     (define-key gnus-topic-mode-map (kbd "c") nil)
     (define-key gnus-topic-mode-map (kbd "C c") 
#'gnus-topic-catchup-articles)))




reply via email to

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