From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27069 Path: main.gmane.org!not-for-mail From: "BrYan P. Johnson" Newsgroups: gmane.emacs.gnus.general Subject: Fwd: customization: window configurations Date: 18 Nov 1999 13:40:17 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035164160 22684 80.91.224.250 (21 Oct 2002 01:36:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:36:00 +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 NAA04092 for ; Thu, 18 Nov 1999 13:41:45 -0500 (EST) 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 MAB23130; Thu, 18 Nov 1999 12:41:42 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 18 Nov 1999 12:41:53 -0600 (CST) 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 MAA23819 for ; Thu, 18 Nov 1999 12:41:06 -0600 (CST) Original-Received: from honky.eng.mindspring.net (honky.eng.mindspring.net [207.69.192.164]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA04068 for ; Thu, 18 Nov 1999 13:40:35 -0500 (EST) Original-Received: (from beej@localhost) by honky.eng.mindspring.net (8.9.3/8.9.3) id NAA28864; Thu, 18 Nov 1999 13:40:18 -0500 Original-To: ding@gnus.org Original-Lines: 129 User-Agent: Gnus/5.070099 (Pterodactyl Gnus v0.99) XEmacs/21.1 (20 Minutes to Nikko) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:27069 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:27069 >>>>> On 18 Nov 1999 11:44:43 -0600, Bill White said: > Aftger Randal and Karl's customizations for > gnus-group-line-format, I'm wondering what other nifty things > folks have come up with. > For starters, a screenshot of my gnus window configuration can > be found at ,[1] and > here's the .gnus code that does it (inspired by code found in > Bryan Johnson's gnus-filterhist.el[2]) I've put a screenshot of mine at . It's pretty large, as I haven't scaled it any. I prefer the summary at the bottom (since my eyes focus on the article at the top). When I send a message, though, I leave the Group and Filter History buffers at the left, and have just the outgoing message at the right. In fact, I try to always leave the Group buffer at the left so that I can easily switch to other Groups if I need to. The code is below. BrYan -- Triangle man hates Particle man. ------- (gnus-add-configuration '(group (horizontal 1.0 (vertical 0.25 (group 0.85 point) ("*Filter History*" 1.0) ) ("*scratch*" 1.0) ))) ;;Why change things for the big ugly summary? (gnus-add-configuration '(summary (horizontal 1.0 (vertical 0.25 (group 0.85 point) ("*Filter History*" 1.0) ) (vertical 1.0 ("*scratch*" 1.0) (horizontal 0.25 (summary 0.66 point) (vertical 1.0 ("*BBDB*" 0.5) (tree 1.0) ) ))))) ;Make the Article Buffer show up nice and pretty. (gnus-add-configuration '(article (horizontal 1.0 (vertical 0.25 (group 0.85 point) ("*Filter History*" 1.0) ) (vertical 1.0 (article 1.0) (horizontal 0.25 (summary 0.66 point) (vertical 1.0 ("*BBDB*" 0.5) (tree 1.0) ) ))))) (gnus-add-configuration '(message (horizontal 1.0 (vertical 0.25 (group 0.85) ("*Filter History*" 1.0) ) (message 1.0 point) ))) (gnus-add-configuration ' (post (horizontal 1.0 (vertical 0.25 (group 0.85) ("*Filter History*" 1.0) ) (post 1.0 point) ))) (gnus-add-configuration ' (reply (horizontal 1.0 (vertical 0.25 (group 0.85) ("*Filter History*" 1.0) ) (message 1.0 point) ))) (gnus-add-configuration ' (forward (horizontal 1.0 (vertical 0.25 (group 0.85) ("*Filter History*" 1.0) ) (message 1.0 point) ))) (gnus-add-configuration ' (reply-yank (horizontal 1.0 (vertical 0.25 (group 0.85) ("*Filter History*" 1.0) ) (message 1.0 point) )))