all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* dired-do-query-replace-regexp: just which index.html<4> am I on?
@ 2002-03-22  9:58 Dan Jacobson
  2002-03-22 19:57 ` Kevin Rodgers
  2002-03-23 16:14 ` Richard Stallman
  0 siblings, 2 replies; 5+ messages in thread
From: Dan Jacobson @ 2002-03-22  9:58 UTC (permalink / raw)


I was using dired-do-query-replace-regexp on a whole tree of files,
many of which are called the same name.  On the screen I see it is now
asking me if I want to perform the replacement in a buffer called
index.html<4> with no clue as to what directory that file is in
visible on the screen.  I suppose one must enter recursive edit to go
issue additional commands to find out each time.

In Info "Optional Mode Line Features" we see no way to get the
filename into the mode line.
-- 
http://www.geocities.com/jidanni/ Taiwan(04)25854780

_______________________________________________
Bug-gnu-emacs mailing list
Bug-gnu-emacs@gnu.org
http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs


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

* Re: dired-do-query-replace-regexp: just which index.html<4> am I on?
  2002-03-22  9:58 dired-do-query-replace-regexp: just which index.html<4> am I on? Dan Jacobson
@ 2002-03-22 19:57 ` Kevin Rodgers
  2002-03-27  7:48   ` Dan Jacobson
  2002-03-23 16:14 ` Richard Stallman
  1 sibling, 1 reply; 5+ messages in thread
From: Kevin Rodgers @ 2002-03-22 19:57 UTC (permalink / raw)


Dan Jacobson wrote:
> 
> I was using dired-do-query-replace-regexp on a whole tree of files,
> many of which are called the same name.  On the screen I see it is now
> asking me if I want to perform the replacement in a buffer called
> index.html<4> with no clue as to what directory that file is in
> visible on the screen.  I suppose one must enter recursive edit to go
> issue additional commands to find out each time.

Try (require 'uniquify).

I can't find any mention of this bundled package in the Emacs manual,
however.  Shouldn't it be referenced in the Visiting [Files] node, and
maybe the [Using Multiple] Buffers node as well?

> In Info "Optional Mode Line Features" we see no way to get the
> filename into the mode line.

Perhaps the Mode Line or Optional Mode Line [Features] info nodes should
mention the buffer-mode-format variable (which isn't documented in the
Emacs manual) or even reference the Mode Line Data node in the Emacs Lisp
manual.

-- 
Kevin Rodgers <kevinr@ihs.com>

_______________________________________________
Bug-gnu-emacs mailing list
Bug-gnu-emacs@gnu.org
http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs


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

* Re: dired-do-query-replace-regexp: just which index.html<4> am I on?
  2002-03-22  9:58 dired-do-query-replace-regexp: just which index.html<4> am I on? Dan Jacobson
  2002-03-22 19:57 ` Kevin Rodgers
@ 2002-03-23 16:14 ` Richard Stallman
  1 sibling, 0 replies; 5+ messages in thread
From: Richard Stallman @ 2002-03-23 16:14 UTC (permalink / raw)
  Cc: gnu-emacs-bug

    I was using dired-do-query-replace-regexp on a whole tree of files,
    many of which are called the same name.  On the screen I see it is now
    asking me if I want to perform the replacement in a buffer called
    index.html<4> with no clue as to what directory that file is in
    visible on the screen.

I see why this is annoying, but I don't see a clean solution (except
to use uniquify.el to name the buffers differently).

_______________________________________________
Bug-gnu-emacs mailing list
Bug-gnu-emacs@gnu.org
http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs


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

* Re: dired-do-query-replace-regexp: just which index.html<4> am I on?
  2002-03-22 19:57 ` Kevin Rodgers
@ 2002-03-27  7:48   ` Dan Jacobson
  2002-03-27 18:37     ` Kevin Rodgers
  0 siblings, 1 reply; 5+ messages in thread
From: Dan Jacobson @ 2002-03-27  7:48 UTC (permalink / raw)


K> Perhaps the Mode Line or Optional Mode Line [Features] info nodes should
K> mention the buffer-mode-format variable (which isn't documented in the
K> Emacs manual) or even reference the Mode Line Data node in the Emacs Lisp
K> manual.

odd, I do (apropos "buffer-mode-format") and I see the following not
very useful stuff on my screen
===========
If moving the mouse over text changes the text's color,
you can click <mouse-2> on that text to get more information.
In this buffer, go to the name of the command, or function, or variable,
and type RET to get full documentation.

buffer-mode-format
===========
and no, it doesn't change color.
-- 
http://www.geocities.com/jidanni/ Taiwan(04)25854780

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

* Re: dired-do-query-replace-regexp: just which index.html<4> am I on?
  2002-03-27  7:48   ` Dan Jacobson
@ 2002-03-27 18:37     ` Kevin Rodgers
  0 siblings, 0 replies; 5+ messages in thread
From: Kevin Rodgers @ 2002-03-27 18:37 UTC (permalink / raw)


Dan Jacobson wrote:
> 
> K> Perhaps the Mode Line or Optional Mode Line [Features] info nodes should
> K> mention the buffer-mode-format variable (which isn't documented in the
> K> Emacs manual) or even reference the Mode Line Data node in the Emacs Lisp
> K> manual.
> 
> odd, I do (apropos "buffer-mode-format") and I see the following not
> very useful stuff on my screen
> ===========
> If moving the mouse over text changes the text's color,
> you can click <mouse-2> on that text to get more information.
> In this buffer, go to the name of the command, or function, or variable,
> and type RET to get full documentation.
> 
> buffer-mode-format
> ===========
> and no, it doesn't change color.

Sorry, I meant mode-line-format.

-- 
Kevin Rodgers <kevinr@ihs.com>

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

end of thread, other threads:[~2002-03-27 18:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-22  9:58 dired-do-query-replace-regexp: just which index.html<4> am I on? Dan Jacobson
2002-03-22 19:57 ` Kevin Rodgers
2002-03-27  7:48   ` Dan Jacobson
2002-03-27 18:37     ` Kevin Rodgers
2002-03-23 16:14 ` Richard Stallman

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.