From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mathias Dahl Newsgroups: gmane.emacs.help Subject: Re: create and open tags in windows and other markings... Date: Mon, 17 Jul 2006 12:27:44 +0200 Message-ID: References: <1152912084.904241.190950@h48g2000cwc.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1153132830 9274 80.91.229.2 (17 Jul 2006 10:40:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 17 Jul 2006 10:40:30 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 17 12:40:28 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1G2QWY-0003Rd-MS for geh-help-gnu-emacs@m.gmane.org; Mon, 17 Jul 2006 12:40:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G2QWY-0000Dz-2F for geh-help-gnu-emacs@m.gmane.org; Mon, 17 Jul 2006 06:40:26 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsserver.news.garr.it!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 24 Original-X-Trace: individual.net ACNINDCUrTKrBIHUBbnL2gwiVfyo8uTO0XprvKr/KByAs+JgDj User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt) Cancel-Lock: sha1:+9EIflBli6AkUBXYMEDeRzMNxvk= Original-Xref: shelby.stanford.edu gnu.emacs.help:140386 Original-To: help-gnu-emacs@gnu.org 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:36010 Archived-At: "newbKt" writes: > Also I tried to use %g to mark the files I wanted, but I was not > successful in getting the files I wanted marked. Is there a way to mark > files that begin with 0 and have the extension .tex? I tried a variety > of things, like 0*.tex, 0[*.tex] but none of them worked. An example > file list is given below: > cow.tex > 02-bull.tex > 03-eagle.cgz > 09-fish.tex > > I want files 02 and 09 to be marked and then I want to open them up > with some magical combination of keys. To do that you should use the `% m' command instead. `% g' searches *inside* the files and marks the one that matches the regexp you enter. `% m' matches text in the file names. So, try `% m' instead, with the following search string: 0.*\.tex$ To actually open the marked files, the only command I found seems to be `F', `dired-do-find-marked-files'. Try that.