From debbugs-submit-bounces@debbugs.gnu.org Mon May 27 15:27:09 2024 Received: (at submit) by debbugs.gnu.org; 27 May 2024 19:27:09 +0000 Received: from localhost ([127.0.0.1]:45303 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sBfzw-00032f-Uv for submit@debbugs.gnu.org; Mon, 27 May 2024 15:27:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:41904) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sBfzu-00032W-P3 for submit@debbugs.gnu.org; Mon, 27 May 2024 15:27:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sBfzl-0008W6-Ic for bug-auctex@gnu.org; Mon, 27 May 2024 15:26:57 -0400 Received: from out-188.mta1.migadu.com ([95.215.58.188]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sBfzj-0002H6-B0 for bug-auctex@gnu.org; Mon, 27 May 2024 15:26:57 -0400 X-Envelope-To: bug-auctex@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jeremybryant.net; s=key1; t=1716838012; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=YpEueixwkb5D+9ZAp6F6Zlu0Zd49mbNvaJwRaZZJtKI=; b=s9Lym3UPb1VchL5Pd5D5Z+7wldDXQs3XkAQ+0ekiZ+tP9CkbkG4Z66eEz2fkl1fBlXJCXo EMzNTwmy5QXi1Zc0H19+aD//Xx/xHMN/NX6imhGxPB6Axruedm1uwOCkVg2eMLcIUQdTWY eTEJZOWYWHOxD+tmSNRAb7u4TQnsoWEYlEiLNKt1kdgL5fllfIlmH2PSgS/KAGY7V6QmSK h/XJRNY9MnHZZr1jon0PGt+agfZwacDmNDBVMI/AnXhNudXBDP+yV3uDSQoIRxqozzz9fk 8x4ktmhvdK+cWgzcVQ0JIdPMGVJzlrOPhquHfCfsrNcoAnIxaQGK9CT2qVVjyw== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Jeremy Bryant To: bug-auctex@gnu.org Subject: PATCH for auctex manual to help new users Date: Mon, 27 May 2024 20:26:50 +0100 Message-ID: <87y17vkqdh.fsf@jeremybryant.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=95.215.58.188; envelope-from=jb@jeremybryant.net; helo=out-188.mta1.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --=-=-= Content-Type: text/plain Here is a patch for the manual to help new users enable prettify-symbols-mode --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Clarify-manual-reference-to-prettify-symbols-mode.patch >From a6ebab7d9608f85397dc0dddb60776dd118e7ccf Mon Sep 17 00:00:00 2001 From: Jeremy Bryant Date: Mon, 27 May 2024 20:22:44 +0100 Subject: [PATCH] ; Clarify manual reference to prettify-symbols-mode * doc/auctex.texi (Prettifying): Spell out code required to enable prettify-symbols-mode to help new users. --- doc/auctex.texi | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/doc/auctex.texi b/doc/auctex.texi index f57fa752..1c2358cc 100644 --- a/doc/auctex.texi +++ b/doc/auctex.texi @@ -2959,10 +2959,13 @@ behaviour however you need to set @code{right-edge} which will unprettify the symbol when point moves into or near it. -To enable prettification in @AUCTeX{}, simply add -@code{prettify-symbols-mode} to @code{TeX-mode-hook}. If you enabled -prettification globally with @code{global-prettify-symbols-mode}, then -it's automatically enabled in @AUCTeX{}, too. +To enable prettification in @AUCTeX{}, simply add this to your init file: +@lisp +(add-hook 'TeX-mode-hook 'prettify-symbols-mode) +@end lisp +If you enabled prettification globally with +@code{(global-prettify-symbols-mode)}, then it's automatically enabled in +@AUCTeX{}, too. You can also add custom symbol unicode-character pairs for prettification by adding to @code{tex--prettify-symbols-alist}. Note -- 2.42.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon May 27 17:34:32 2024 Received: (at submit) by debbugs.gnu.org; 27 May 2024 21:34:32 +0000 Received: from localhost ([127.0.0.1]:45367 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sBhzE-0007Na-EE for submit@debbugs.gnu.org; Mon, 27 May 2024 17:34:32 -0400 Received: from lists.gnu.org ([209.51.188.17]:36892) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sBhzD-0007NT-8q for submit@debbugs.gnu.org; Mon, 27 May 2024 17:34:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sBhz3-0004ha-QQ for bug-auctex@gnu.org; Mon, 27 May 2024 17:34:21 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sBhz3-0006LN-6A; Mon, 27 May 2024 17:34:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=D5ioI0xSnJrXS6l6ufMNAzL/owmSWWOErZTUkHmQzjk=; b=co/pkelHKi/uO4kK6qer qkqVQMcIXBg8eBltU4LY1dlCPhh8Rx9t3EvxJd1MMAlyGjY1nOMRncxx34jdKN6U4CbIspJgaK6rc 7l9cPJLvvEfKMLTnvAnSGAoE8CzXqItc9hRPO0XWB19B1XbUbjLxDr9HZR/hxGjWYfrOfsSD8cHi7 IHGenDC7M8nETTFyg62Mw149AVs0obfTXEoePbuAuFWn0I6d3itIesFAK3N7IkP8ELoDXKExfhkbG Bkd7T1JA1UlySt0KVJN4KqM7mQPVS2hzKE9GoLNBzhGtvLoFdvrxwMcGdCrkQocpOhgt3cqzPnVqe 2qfnZDI3R5GPWg==; From: Arash Esbati To: Jeremy Bryant via bug-auctex via Bug reporting list for AUCTeX Subject: Re: bug#71234: PATCH for auctex manual to help new users In-Reply-To: <87y17vkqdh.fsf@jeremybryant.net> (Jeremy Bryant via bug-auctex via Bug reporting list for AUCTeX's message of "Mon, 27 May 2024 20:26:50 +0100") References: <87y17vkqdh.fsf@jeremybryant.net> Date: Mon, 27 May 2024 23:34:17 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: 71234-done@debbugs.gnu.org, Jeremy Bryant X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Jeremy Bryant via bug-auctex via Bug reporting list for AUCTeX writes: > Here is a patch for the manual to help new users enable > prettify-symbols-mode Thanks, installed, and closing. Best, Arash From unknown Sat Aug 09 13:13:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 25 Jun 2024 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator