all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How should a clone of the `grep` program highlight matches for Emacs?
@ 2015-06-21 14:32 Raffaele Ricciardi
  2015-06-27 15:22 ` Michael Heerdegen
  2015-06-29 15:58 ` Raffaele Ricciardi
  0 siblings, 2 replies; 3+ messages in thread
From: Raffaele Ricciardi @ 2015-06-21 14:32 UTC (permalink / raw)
  To: help-gnu-emacs

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.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-29 15:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-21 14:32 How should a clone of the `grep` program highlight matches for Emacs? Raffaele Ricciardi
2015-06-27 15:22 ` Michael Heerdegen
2015-06-29 15:58 ` Raffaele Ricciardi

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.