[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to redefine keys?
From: |
Jesper Harder |
Subject: |
Re: How to redefine keys? |
Date: |
Mon, 21 Feb 2005 00:10:35 +0100 |
User-agent: |
Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (darwin) |
Colin Paul Adams <colin@colina.demon.co.uk> writes:
> Although I have been using gnus for many years, I have not been able
> to rid myself of the habit of always using the r or R keys, even
> though I often should be using the f or F keys.
You culd set `gnus-confirm-mail-reply-to-news' to t. (I don't recall
if this option is present in Gnus 5.9, though)
> (define-key gnus-summary-mode-map "r" gnus-summary-followup)
> (define-key gnus-summary-mode-map "R" gnus-summary-followup-with-original)
This should be:
(define-key gnus-summary-mode-map "r" 'gnus-summary-followup)
(define-key gnus-summary-mode-map "R" 'gnus-summary-followup-with-original)