From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/26005 Path: main.gmane.org!not-for-mail From: Colin Rafferty Newsgroups: gmane.emacs.gnus.general Subject: Re: Redefining keys in the pGnus summary buffer Date: 22 Oct 1999 11:34:10 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87so34mcjo.fsf@morrigan.osa.com.au> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163295 17172 80.91.224.250 (21 Oct 2002 01:21:35 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:21:35 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id LAA19412 for ; Fri, 22 Oct 1999 11:38:57 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id KAB18009; Fri, 22 Oct 1999 10:38:55 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 22 Oct 1999 10:39:18 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id KAA15163 for ; Fri, 22 Oct 1999 10:39:00 -0500 (CDT) Original-Received: from piinbh1.ms.com (piinbh1.ms.com [199.89.64.71]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id LAA19406 for ; Fri, 22 Oct 1999 11:38:23 -0400 (EDT) Original-Received: (from uucp@localhost) by piinbh1.ms.com (8.8.6/fw v1.22) id LAA12832 for ; Fri, 22 Oct 1999 11:38:11 -0400 (EDT) Original-Received: from unknown(144.14.9.190) by piinbh1 via smap (4.1) id xma000470; Fri, 22 Oct 99 11:34:11 -0400 Original-Received: from sag3 (sag3.morgan.com [144.14.8.198]) by safid1.morgan.com (8.8.5/hub+ldap v2.3) with ESMTP id LAA24198 for ; Fri, 22 Oct 1999 11:34:11 -0400 (EDT) Original-Received: (craffert@localhost) by sag3 (980427.SGI.8.8.8/sendmail.cf.client v1.05) id LAA19685; Fri, 22 Oct 1999 11:34:10 -0400 (EDT) Original-To: GNUS Mailing List X-Attribution: > Mail-Copies-To: never X-Face: D>:hrrB{l6#\wU;)0R:OHSTA@ayd.Oq?s@Rrc;[+z0m+<-U"$G-J6L)F2QY`qK~uPu!s1(6{\#uy!Ag/D)?'L[}xErXvxoPn8T_hKi{M]/(`BF{e}X7;hby`p\.E$rJ}Aff#BT,rdDIw\y X-Y-Zippy: .. I want to perform cranial activities with Tuesday Weld!! In-Reply-To: Daniel Pittman's message of "22 Oct 1999 11:03:55 +1000" Original-Lines: 17 User-Agent: Gnus/5.070097 (Pterodactyl Gnus v0.97) XEmacs/21.2 (Shinjuku) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:26005 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:26005 Daniel Pittman writes: > What I want to do is redefine the keystroke M-k to lower the score of a > thread. This is easy to do and I have it working. > Getting the redefinition to happen automatically is a little harder > however. The trick is to make sure that gnus-sum.el is already loaded. Since you are putting this in your .gnus, you are not killing your process space with a require: (require 'gnus-sum) (define-key gnus-summary-mode-map [(meta k)] 'gnus-summary-lower-thread) -- Colin