From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.help Subject: Re: [historical remarks] Date: Sun, 28 Aug 2022 11:09:23 +0200 Message-ID: <86r110d9a4.fsf@gnu.org> References: <87lerab3kj.fsf@mat.ucm.es> <87k06t1u85.fsf@gmail.com> <86v8qcd9ky.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="1746"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 Cc: Stefan Monnier To: Stefan Monnier via Users list for the GNU Emacs text editor Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun Aug 28 11:10:45 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oSEJZ-0000K8-6u for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 28 Aug 2022 11:10:45 +0200 Original-Received: from localhost ([::1]:39558 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oSEJX-0003R9-Q4 for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 28 Aug 2022 05:10:43 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:59564) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oSEIV-0003Qx-MQ for help-gnu-emacs@gnu.org; Sun, 28 Aug 2022 05:09:39 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:48722) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oSEIU-0006uB-B2; Sun, 28 Aug 2022 05:09:38 -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=LR/2oPtF6NMtrNkN6VC95hYHHnAsGlzGFveu3NlvJ98=; b=VAyhTBKt6Py3p2GZoOfe GchlBAv6AzZ8Nm6kJjEa39jUhV6kcnbjb90gXgQS0dPdATjDGgopO5W6gN/q8t1Hgfpf7yeyT3PlE cJxnDQbHjbpmOHRtDFxfGQopQWFUWPA/51/QBipJpgIJbCb7NUbT+c0vMlqvUfvaDOr64dpt38eib YFT2RoY9eG0k7+P7XMPCPFqtuL7aTH2TdN3jD/DJQDP0prIkCw14aM0zO72uONnZXdI3a2eYC+JbV x2I5pLCbRgYKLm1zruSMXPp/HjB6quVmPtNWNKtV0eUC47cmxx+v3DzcS/sCaRyPOxgVeNsdGJdyc K6BJEDjY9/JUJQ==; Original-Received: from pd9fb77f7.dip0.t-ipconnect.de ([217.251.119.247]:58246 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oSEIT-00028R-26; Sun, 28 Aug 2022 05:09:37 -0400 In-Reply-To: <86v8qcd9ky.fsf@gnu.org> (Arash Esbati's message of "Sun, 28 Aug 2022 11:02:53 +0200") X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:139125 Archived-At: Arash Esbati writes: > Stefan Monnier via Users list for the GNU Emacs text editor writes: > >>> 2. I configured AUCTeX to convert `$` to `\(\)`, for inline math. Using >>> cdlatex-mode hijacks the keybinding and inserts `$$`, while org-cdlatex >>> doesn't. >> >> Sounds like a bug you should report to the cdlatex-mode maintainer. > > I'd try to customize `cdlatex-paired-parens', maybe that helps: > > (defcustom cdlatex-paired-parens "$[{" > "String with the opening parens you want to have inserted paired. > The following parens are allowed here: `$([{|<'. > I recommend to set this to '$[{' as these have syntactical meaning in > TeX and are required to be paired. TAB is a good way to move out of paired > parens." > :group 'cdlatex-miscellaneous-configurations > :type '(string :tag "Opening delimiters")) > > I don't use cdlatex so I can't tell. Following up myself, I missed to insert this one as well: (defcustom cdlatex-takeover-dollar t "Non-nil means, cdlatex is allowed to take over the $. This means it will redefine the `$' keys." :group 'cdlatex-miscellaneous-configurations :type '(boolean)) Best, Arash