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=-1.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 21073 invoked from network); 15 Feb 2023 23:28:00 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 15 Feb 2023 23:28:00 -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.94.2) (envelope-from ) id 1pSRBt-00COc6-7Y for ml@inbox.vuxu.org; Wed, 15 Feb 2023 17:27:57 -0600 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 1pSRBs-000Nop-2w for ml@inbox.vuxu.org; Wed, 15 Feb 2023 17:27:56 -0600 Received: from mx2.math.uh.edu ([129.7.128.33]) by lists1.math.uh.edu with esmtp (Exim 4.96) (envelope-from ) id 1pSR4U-000Nnx-24 for ding@lists.math.uh.edu; Wed, 15 Feb 2023 17:20:18 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx2.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pSR4Q-008ykj-WA for ding@lists.math.uh.edu; Wed, 15 Feb 2023 17:20:18 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version: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:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=NJ4iL0sRvYalurVJnDshwdaxVasSiz6iPFXnyZYibHs=; b=f0XhEMJM2J1rAJ56Y585kO27My c7jo4+WxC0coF78ZTgyp7p39Efbgl/2ODN7/OXtur726Z1y+W8RtDM4mVocRpXT3/7HGAMgkLd77W J/B5FLQg1Jh4zEZHyTcc8VQqB06Gj9+qvyXV0RSDcB+bq8ZANK9cEZ2Exq/8tUO97/xM=; 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 1pSR4J-0005P1-9B for ding@gnus.org; Thu, 16 Feb 2023 00:20:10 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1pSR4E-00019e-Fl for ding@gnus.org; Thu, 16 Feb 2023 00:20:02 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: Chen Zhaoyang Subject: How to set the default articles to fetch when selecting groups Date: Wed, 15 Feb 2023 17:15:00 -0600 Message-ID: <87a61ewmff.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:idN02I56hvDxqHyg4mqhgmJE5xs= List-ID: Precedence: bulk Hello friends, For now I just have a wrapper function that I have binded to RET in gnus-group-mode-map: (defun site/gnus-group-select-group () (interactive) (gnus-group-select-group 100)) to fetch only the newest 100 messages from a group. I have dug into the manuals for a little bit but I have not found such a variable that would let me set the default number of articles to fetch. --- Chen Zhaoyang