From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Meekohi Newsgroups: gmane.emacs.help Subject: Re: Special font for lines with suffix Date: Mon, 28 Dec 2009 11:53:11 -0800 (PST) Organization: http://groups.google.com Message-ID: <21db7314-b3eb-4424-8863-d3f4e4e861f1@c3g2000yqd.googlegroups.com> References: <87637r1g3j.fsf@hubble.informatimago.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1262042878 32077 80.91.229.12 (28 Dec 2009 23:27:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 28 Dec 2009 23:27:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Dec 29 00:27:51 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NPP08-0001bV-Ig for geh-help-gnu-emacs@m.gmane.org; Tue, 29 Dec 2009 00:27:48 +0100 Original-Received: from localhost ([127.0.0.1]:47377 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NPP08-0008Sf-Pi for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Dec 2009 18:27:48 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!postnews.google.com!c3g2000yqd.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 25 Original-NNTP-Posting-Host: 128.143.63.51 Original-X-Trace: posting.google.com 1262029991 2604 127.0.0.1 (28 Dec 2009 19:53:11 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 28 Dec 2009 19:53:11 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: c3g2000yqd.googlegroups.com; posting-host=128.143.63.51; posting-account=-0f8owoAAADk4Cg4bX7rKBWB0UbC40aP User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.43 Safari/532.5, gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:175840 X-Mailman-Approved-At: Mon, 28 Dec 2009 18:23:08 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:70919 Archived-At: On Dec 28, 6:40=A0am, p...@informatimago.com (Pascal J. Bourguignon) wrote: > Meekohi writes: > > When debugging code, I tend to put in hacks, and then I forget to take > > them out later. What I'd like is to be able to end a line with "//!" > > or something similar and have emacs increase the font-size (or > > something similar) to make it stand out visually. I don't know how to > > get started. Any advice or recommendations on how to accomplish this? > > I would try: > > (font-lock-add-keywords nil '("^.*//!.*" 0 font-lock-warning-face prepend= )) > > -- > __Pascal Bourguignon__ =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0http://www.= informatimago.com/ Hi Pascal thanks so much that is perfect :) For any interested users that come along later, I ended up specifically using: (add-hook 'c++-mode-hook (lambda () (font-lock-add-keywords nil '(("//!.*" 0 font-lock-warning-face t))))) because highlighting the whole line turned out to be very distracting.