From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 7172 invoked from network); 10 Jun 2023 13:41:56 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 10 Jun 2023 13:41:56 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1q7yqm-0091Pd-0l for ml@inbox.vuxu.org; Sat, 10 Jun 2023 08:41:53 -0500 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.96) (envelope-from ) id 1q7yql-001UxV-1t for ml@inbox.vuxu.org; Sat, 10 Jun 2023 08:41:51 -0500 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.96) (envelope-from ) id 1q7yqi-001UxM-2y for ding@lists.math.uh.edu; Sat, 10 Jun 2023 08:41:49 -0500 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1q7yqd-0091PF-3D for ding@lists.math.uh.edu; Sat, 10 Jun 2023 08:41:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version:References:Message-ID:Date:Subject: From:To:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=erR2q98cyew1dHqQgXF99VFUaBbE3Ylr5hOpmhWUMlA=; b=Der29Pd25h3yYKB+VjnpC846Ra kSHDDBTHFrCZOiXaJatRXE9zWT9jG2XsFX/AMf0dbh/8odIef7dpxv7h99DiPKjCH2Ca+qW/WVXPk VQWWEGVsbg1+32BF+KA8f/fuWvS9FJyUzhjlZEiykfpKlfjUk+G6Ia99RFo/IQ6L8F8A=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q7yqU-0001j1-Hq for ding@gnus.org; Sat, 10 Jun 2023 15:41:38 +0200 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1q7yqS-0004MI-7A for ding@gnus.org; Sat, 10 Jun 2023 15:41:32 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: Andrew Cohen Subject: Re: compose new message in new frame Date: Sat, 10 Jun 2023 21:41:20 +0800 Message-ID: <87ttvfwi2n.fsf@ust.hk> References: <875y7va74h.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:Vtd2lbQhDXFlSiMtExoumpaou24= List-ID: Precedence: bulk >>>>> "ESF" == Eric S Fraga writes: ESF> I currently have gnus configured (using gnus-add-configuration) ESF> as follows: (gnus-add-configuration '(message (frame 1.0 ESF> (vertical (message 1.0 point))))) ESF> (elided, hopefully correctly, to the minimal bits as the body ESF> is actually a cond which changes the behaviour depending on the ESF> monitor size) ESF> This does bring up a frame with the composition buffer but the ESF> original frame also shows the same buffer, not the (say) ESF> summary and article that I was reading. You have to include the explicit config for it. For example I use something like this (and similar things for reply, reply-yank, and forward): (gnus-add-configuration '(message (frame 1.0 (if (not (buffer-live-p gnus-summary-buffer)) (car (cdr (assoc 'group gnus-buffer-configuration))) (car (cdr (assoc 'summary gnus-buffer-configuration)))) (vertical ((user-position . t) (top . 1) (left . 1) (name . "Message")) (message 1.0 point))))) (You also might want to kill the frame afterwards: (add-hook 'gnus-message-setup-hook (lambda () (message-add-action #'delete-frame 'exit 'postpone 'kill))) -- Andrew Cohen