From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/4555 Path: news.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.user Subject: Re: How to redefine keys? Date: Mon, 21 Feb 2005 00:10:35 +0100 Organization: http://purl.org/harder/ Message-ID: <87braebzf8.fsf@Jesper-Harders-Computer.local> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138670442 23758 80.91.229.2 (31 Jan 2006 01:20:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:20:42 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:33:57 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.gnus X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; Colin Paul Adams 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)