From: "Sebastien Vauban" <sva-news-D0wtAvR13HarG/iDocfnWg@public.gmane.org>
To: help-gnu-emacs-mXXj517/zsQ@public.gmane.org
Subject: Re: Rename Shell buffer with current directory
Date: Sun, 08 Dec 2013 21:36:38 +0100 [thread overview]
Message-ID: <86siu3f5bd.fsf@somewhere.org> (raw)
In-Reply-To: mailman.8479.1386449940.10748.help-gnu-emacs@gnu.org
Hello Michael,
Michael Heerdegen wrote:
> "Sebastien Vauban" <sva-news-D0wtAvR13HarG/iDocfnWg@public.gmane.org> writes:
>>
>> In order to rename the Shell buffer with the information of the current
>> directory, I've come up with the following:
>>
>> (defun my-rename-to-curdir ()
>> (message "%s" default-directory) ; does work
>> (rename-buffer (concat "*shell " default-directory "*")) ; DOESN'T WORK
>> )
>>
>> (add-hook 'comint-output-filter-functions 'my-rename-to-curdir nil t)
>>
>> Depending on where you first launch Shell, the name is correctly created, so
>> it mostly works.
>>
>> But, when changing of directory, in the shell session, does not update the
>> name of the buffer -- while the variable `default-directory' is correctly
>> updated...
>
> Without knowing if renaming the buffer all the time breaks anything:
> `comint-output-filter-functions' is an abnormal hook (that's why it is called
> ""...-functions"" and not "...-hook""). In contrast to normal hooks,
> functions in abnormal hooks take arguments.
Interesting concept. Thanks for the explanations...
> The doc of the hook says how many and what they mean.
> `comint-output-filter-functions' functions need to accept one argument. Just
> don't use it in the function body if you don't need it.
OK, I've "cloned" what's done for `comint-postoutput-scroll-to-bottom' and
`comint-watch-for-password-prompt', present in my
`comint-output-filter-functions', by adding an optional `_string' argument:
--8<---------------cut here---------------start------------->8---
(defun my-rename-buffer-to-curdir (&optional _string)
"Change Shell buffer's name to current directory."
(message "%s" default-directory)
(rename-buffer (concat "*shell " default-directory "*")))
(add-hook 'shell-mode-hook 'my-rename-buffer-to-curdir)
(add-hook 'comint-output-filter-functions 'my-rename-buffer-to-curdir nil t)
--8<---------------cut here---------------end--------------->8---
However, that does not change the end result: the name of the buffer is
unchanged.
Should I report this as an Emacs bug?
Best regards,
Seb
--
Sebastien Vauban
next prev parent reply other threads:[~2013-12-08 20:36 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-07 8:06 Rename Shell buffer with current directory Sebastien Vauban
2013-12-07 20:58 ` Michael Heerdegen
[not found] ` <mailman.8479.1386449940.10748.help-gnu-emacs@gnu.org>
2013-12-08 20:36 ` Sebastien Vauban [this message]
2013-12-08 21:32 ` Michael Heerdegen
[not found] ` <mailman.8618.1386538352.10748.help-gnu-emacs@gnu.org>
2013-12-09 8:36 ` Sebastien Vauban
2013-12-09 9:36 ` Rainer M Krug
[not found] ` <52A58F09.1010409-vfylz/Ys1k4@public.gmane.org>
2013-12-09 12:22 ` Sebastien Vauban
2013-12-09 12:56 ` Rainer M Krug
2013-12-09 18:16 ` Michael Heerdegen
[not found] ` <mailman.8695.1386613044.10748.help-gnu-emacs@gnu.org>
2013-12-09 18:44 ` Sebastien Vauban
2013-12-09 19:31 ` Michael Heerdegen
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=86siu3f5bd.fsf@somewhere.org \
--to=sva-news-d0wtavr13harg/idocfnwg@public.gmane.org \
--cc=help-gnu-emacs-mXXj517/zsQ@public.gmane.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.