From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Heime Newsgroups: gmane.emacs.help Subject: Re: Introducing face in comments for various modes Date: Tue, 13 Dec 2022 08:04:56 +0000 Message-ID: References: <9ZK1Solghrmps4AarUsz2E6-mAdkrTZoXPs4RTRTd9sZ0Cd8DGhK955im1kuug-EZXU3tc5rgDDd16vQexxpFnMvMFjFqnNnh0noashyLdE=@protonmail.com> <0RJB0bPRTMAqXlUbL2kGUvJtnCNPYwPhqTNi_l9nIpQAciTZYcYCikFVqi2Nr_UZLbT1_DRtX8G0dSkgI4jln5DTYBDxLz4i7L2d9wx-kA8=@protonmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="22418"; mail-complaints-to="usenet@ciao.gmane.io" Cc: help-gnu-emacs@gnu.org To: Jean Louis Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Tue Dec 13 09:11:19 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 1p50Ni-0005cu-Ly for geh-help-gnu-emacs@m.gmane-mx.org; Tue, 13 Dec 2022 09:11:18 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1p50Im-0008Bn-SP; Tue, 13 Dec 2022 03:06:16 -0500 Original-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 1p50Hm-0007dU-JM for help-gnu-emacs@gnu.org; Tue, 13 Dec 2022 03:05:10 -0500 Original-Received: from mail-4324.protonmail.ch ([185.70.43.24]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p50Hk-0002Hh-P4 for help-gnu-emacs@gnu.org; Tue, 13 Dec 2022 03:05:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1670918699; x=1671177899; bh=0xa///aOpG2OveO0TytfoimM0qKKP1Pqafa0IPa/oKo=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=khY5q7S0MwYraqTyp4/4sOY1jNAEgZ+e8osCWD+PRfWebrFRQak/LuGQ+ClTDkAfs csWSDRUj/+h/pgUjmwIDN9PF4B6HRgZPRKdi4QtyzGHu7pKOV8osXAAYnZHCfDOFxx 0jcpNAyVN2aZxtLt3Ileey9i5ZiveMWOsRk+bCQU6X1iBF3/iowA663BNM0M4YtAcM 2+4VnleMNqkH26OrpSItBTL0rfQ2O4fz5bSNxX8xDMxgvt9JEIROsnnj1WnUeYQf+u MSBEQSjj3kAxjJFSR0Pdmpsf725p1Rbc6F5W3soNe2cA/m7HtCbvwlbuIDtr7WlF72 3ejgU4TJjmR7Q== In-Reply-To: Feedback-ID: 57735886:user:proton Received-SPF: pass client-ip=185.70.43.24; envelope-from=heimeborgia@protonmail.com; helo=mail-4324.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:141697 Archived-At: ------- Original Message ------- On Tuesday, December 13th, 2022 at 7:52 AM, Jean Louis w= rote: > Heime, I like the idea of highlighting comments, though I do it this > way to specify (syntax comment-start) as that works for multiple > modes. >=20 > ; one > ;; two > ;;; three > ;;;; and more >=20 > ;;; Highlighting comments >=20 > (setq rcd-regexp-comment (rx line-start > (one-or-more (syntax comment-start)) > (one-or-more space) > (group (one-or-more not-newline)) > line-end)) >=20 > ;; (highlight-regexp regexp nil 1) > ;; (unhighlight-regexp regexp) >=20 > Jean I shall try this and report back. But, how do I get to use "rcd-regexp-com= ment" ? Is that just "regexp" ?