From xemacs-m  Sat Feb 15 16:11:51 1997
Received: from mailhost.lanl.gov (mailhost.lanl.gov [128.165.3.12])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id QAA08404
	for <xemacs-beta@xemacs.org>; Sat, 15 Feb 1997 16:11:50 -0600 (CST)
Received: from branagh.ta52.lanl.gov (branagh.ta52.lanl.gov [128.165.144.9]) by mailhost.lanl.gov (8.8.5/8.8.3) with SMTP id PAA00138 for <xemacs-beta@xemacs.org>; Sat, 15 Feb 1997 15:11:50 -0700 (MST)
Received: by branagh.ta52.lanl.gov (SMI-8.6/SMI-SVR4)
	id PAA04896; Sat, 15 Feb 1997 15:08:07 -0700
Date: Sat, 15 Feb 1997 15:08:07 -0700
Message-Id: <199702152208.PAA04896@branagh.ta52.lanl.gov>
From: "John A. Turner" <turner@branagh.ta52.lanl.gov>
To: xemacs-beta@xemacs.org
Subject: igrep.el
Reply-To: turner@lanl.gov

igrep 2.56 seems fine (tested with 19.15b90).

I use it so often I put a button on my menubar:

(add-menu-item nil "igrep" 'igrep t)

[As an aside, I also add the following three buttons, which people
here seem to like.  Probably shouldn't be defaults, but maybe worth
putting in sample.emacs...

(add-menu-item nil "Kill" 'kill-this-buffer t)
(add-menu-item nil "Split" 'split-window-vertically t)
(add-menu-item nil "Unsplit" 'delete-other-windows t)

]

Back to igrep.  I also add a submenu to the Tools menu for it.
There have been changes and additions in 2.56, so this is missing
some of that.  The only things I ever actually use, though, are
igrep (via the menubar button) and igrep-recursively (now
igrep-find):

(add-menu '("Tools") "igrep"
	  '(
	    ["igrep"  igrep  t]
	    ["egrep"  egrep  t]
	    ["fgrep"  fgrep  t]
	    ["igrep-find"  igrep-find  t]
	    ["egrep-find"  egrep-find  t]
	    ["fgrep-find"  fgrep-find  t]
	    ) "Grep...")

-- 
John Turner
http://www.lanl.gov/home/turner

