all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Raffaele Ricciardi <rfflrccrd@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: How should a clone of the `grep` program highlight matches for Emacs?
Date: Sun, 21 Jun 2015 16:32:57 +0200	[thread overview]
Message-ID: <cuo08qFilscU1@mid.individual.net> (raw)

I am writing an Emacs script as a replacement for the `grep` program 
while executing the `rgrep` command.  Now, I can't make my Emacs script 
highlight the matches in a way that Emacs understands.

After having read the Emacs Lisp file that defines the `rgrep` command 
-- which I am using for my tests -- I guess that the script should 
surround matches with Select Graphic Rendition sequences; and it is 
doing so, like this:

     (princ "\x1b[31m") ; 31 means "red", as hard-coded in `grep.el`
     (princ (match-string-no-properties 0))
     (princ "\x1b[0m"))

These sequences do cause a terminal to highlight the matches, but not 
Emacs (of course, Emacs does highlight matches from `grep`).

What should the script do instead?  Thank you.


             reply	other threads:[~2015-06-21 14:32 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-21 14:32 Raffaele Ricciardi [this message]
2015-06-27 15:22 ` How should a clone of the `grep` program highlight matches for Emacs? Michael Heerdegen
2015-06-29 15:58 ` Raffaele Ricciardi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cuo08qFilscU1@mid.individual.net \
    --to=rfflrccrd@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.