unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* uniquify
@ 2010-02-14  3:20 Sean Sieger
  2010-02-14 15:22 ` uniquify Sean Sieger
  0 siblings, 1 reply; 7+ messages in thread
From: Sean Sieger @ 2010-02-14  3:20 UTC (permalink / raw)
  To: help-gnu-emacs

Huh.  I guess I would have thought that whether a buffer is a Dired one
or file one, uniquify would follow the rule that I have configured in
.emacs:  (setq uniquify-buffer-name-style 'forward).

I had inadvertantly visited a Dired buffer of the same name as the file
that I was on my way to visit, then visited the file, whose buffer name
had appended to it, `<2>'.

To sooth myself, I then visited two files of the same name in different
directories and the buffer names had the expected directory-difference
prepended to them.

Uh, my question is, does anyone else perceive this as a little clunky?
I could never perceive the <2>, <3> -thing as clarifying and was pleased
to get rid of it---or so I thought---with uniquify ... thanks.





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

* Re: uniquify
  2010-02-14  3:20 uniquify Sean Sieger
@ 2010-02-14 15:22 ` Sean Sieger
  0 siblings, 0 replies; 7+ messages in thread
From: Sean Sieger @ 2010-02-14 15:22 UTC (permalink / raw)
  To: help-gnu-emacs

    I had inadvertantly visited a Dired buffer of the same name as the file
    that I was on my way to visit, then visited the file, whose buffer name
    had appended to it, `<2>'.

I don't get it.  I'm tellin' ya, I saw a buffers named <name> and
<name><2> last night.  I can't reproduce it now.  Sorry for the noise.





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

* uniquify
@ 2014-06-20 22:35 Dennis Yurichev
  2014-06-21  4:42 ` uniquify Alex Kost
       [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 7+ messages in thread
From: Dennis Yurichev @ 2014-06-20 22:35 UTC (permalink / raw)
  To: help-gnu-emacs

Hi.

I added this to my .emacs:
===================================================
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)
===================================================
But nothing happens, buffer names still has <n> at the end.

What/where should I check? 
I've got GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601).

-- 
-- http://yurichev.com


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

* Re: uniquify
  2014-06-20 22:35 uniquify Dennis Yurichev
@ 2014-06-21  4:42 ` Alex Kost
       [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 7+ messages in thread
From: Alex Kost @ 2014-06-21  4:42 UTC (permalink / raw)
  To: Dennis Yurichev; +Cc: help-gnu-emacs

Dennis Yurichev (2014-06-21 02:35 +0400) wrote:

> Hi.
>
> I added this to my .emacs:
> ===================================================
> (require 'uniquify)
> (setq uniquify-buffer-name-style 'forward)
> ===================================================
> But nothing happens, buffer names still has <n> at the end.
>
> What/where should I check?
> I've got GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601).

If you mean the buffers like "*shell*<2>" or "*info*<2>" then it should
be so.  "uniquify" deals only with the buffers that have the same name.
For example if you open 2 files "temp.el" from different directories,
than "uniquify" will uniquify them.



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

* Re: uniquify
       [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
@ 2014-06-21  5:52   ` Dennis Yurichev
  2014-06-21 20:04   ` uniquify Dennis Yurichev
  2014-06-21 22:01   ` uniquify Dennis Yurichev
  2 siblings, 0 replies; 7+ messages in thread
From: Dennis Yurichev @ 2014-06-21  5:52 UTC (permalink / raw)
  To: help-gnu-emacs

Alex Kost <alezost@gmail.com> writes:

>> I added this to my .emacs:
>> ===================================================
>> (require 'uniquify)
>> (setq uniquify-buffer-name-style 'forward)
>> ===================================================
>> But nothing happens, buffer names still has <n> at the end.
>>
>> What/where should I check?
>> I've got GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601).
>
> If you mean the buffers like "*shell*<2>" or "*info*<2>" then it should
> be so.  "uniquify" deals only with the buffers that have the same name.
> For example if you open 2 files "temp.el" from different directories,
> than "uniquify" will uniquify them.

No, I opened several files with the same name, but buffers are 
still <2>, <3>, etc...

-- 
-- http://yurichev.com


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

* Re: uniquify
       [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
  2014-06-21  5:52   ` uniquify Dennis Yurichev
@ 2014-06-21 20:04   ` Dennis Yurichev
  2014-06-21 22:01   ` uniquify Dennis Yurichev
  2 siblings, 0 replies; 7+ messages in thread
From: Dennis Yurichev @ 2014-06-21 20:04 UTC (permalink / raw)
  To: help-gnu-emacs

Alex Kost <alezost@gmail.com> writes:

>> I added this to my .emacs:
>> ===================================================
>> (require 'uniquify)
>> (setq uniquify-buffer-name-style 'forward)
>> ===================================================
>> But nothing happens, buffer names still has <n> at the end.
>>
>> What/where should I check?
>> I've got GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601).
>
> If you mean the buffers like "*shell*<2>" or "*info*<2>" then it should
> be so.  "uniquify" deals only with the buffers that have the same name.
> For example if you open 2 files "temp.el" from different directories,
> than "uniquify" will uniquify them.

Here is also screenshot I made:
http://yurichev.com/tmp3/emacs_problem.png

-- 
-- http://yurichev.com


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

* Re: uniquify
       [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
  2014-06-21  5:52   ` uniquify Dennis Yurichev
  2014-06-21 20:04   ` uniquify Dennis Yurichev
@ 2014-06-21 22:01   ` Dennis Yurichev
  2 siblings, 0 replies; 7+ messages in thread
From: Dennis Yurichev @ 2014-06-21 22:01 UTC (permalink / raw)
  To: help-gnu-emacs

Alex Kost <alezost@gmail.com> writes:

>> I added this to my .emacs:
>> ===================================================
>> (require 'uniquify)
>> (setq uniquify-buffer-name-style 'forward)
>> ===================================================
>> But nothing happens, buffer names still has <n> at the end.
>>
>> What/where should I check?
>> I've got GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601).
>
> If you mean the buffers like "*shell*<2>" or "*info*<2>" then it should
> be so.  "uniquify" deals only with the buffers that have the same name.
> For example if you open 2 files "temp.el" from different directories,
> than "uniquify" will uniquify them.

I found a problem.
Maybe that story will be useful for someone, so I'll post it here.
My Emacs saving buffer configuration into emacs.desktop file
automatically, so names like main.tex<2> and main.tex<3> were saved and
reloaded there each time at startup, and uniquify.el hasn't any chance to
name them properly.
My bad!

-- 
-- http://yurichev.com


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

end of thread, other threads:[~2014-06-21 22:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20 22:35 uniquify Dennis Yurichev
2014-06-21  4:42 ` uniquify Alex Kost
     [not found] ` <mailman.4046.1403325770.1147.help-gnu-emacs@gnu.org>
2014-06-21  5:52   ` uniquify Dennis Yurichev
2014-06-21 20:04   ` uniquify Dennis Yurichev
2014-06-21 22:01   ` uniquify Dennis Yurichev
  -- strict thread matches above, loose matches on Subject: below --
2010-02-14  3:20 uniquify Sean Sieger
2010-02-14 15:22 ` uniquify Sean Sieger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).