all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Juri Linkov <juri@jurta.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Customize dired buffer names
Date: Sun, 17 Jan 2010 01:09:05 +0200	[thread overview]
Message-ID: <871vhpd4vi.fsf@mail.jurta.org> (raw)
In-Reply-To: 2dcdf560-2617-4a5f-b5f6-92584fc7c9f5@e27g2000yqd.googlegroups.com

> I'd like to change the way that the dired buffers got their names.
>
> For now it's juste the name of the directory, but I'd like to add
> "<Dired>" as prefix for example.
>
> Is it possible ?

I use the following snippet to name dired buffers with absolute names:

(add-hook 'dired-after-readin-hook
          (lambda ()
            ;; Name dired buffers by absolute directory names.
	    ;; Use `generate-new-buffer-name' for vc-directory
	    ;; which creates duplicate buffers.
            (rename-buffer (generate-new-buffer-name dired-directory))
            ))

You could use something like

  (rename-buffer (concat "<Dired>" (directory-file-name dired-directory)))

-- 
Juri Linkov
http://www.jurta.org/emacs/





  parent reply	other threads:[~2010-01-16 23:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-16 14:48 Customize dired buffer names Francis Moreau
2010-01-16 21:04 ` Kevin Rodgers
2010-01-16 23:09 ` Juri Linkov [this message]
     [not found] ` <mailman.1558.1263683378.18930.help-gnu-emacs@gnu.org>
2010-01-17 20:43   ` Francis Moreau

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871vhpd4vi.fsf@mail.jurta.org \
    --to=juri@jurta.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.