all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* full path of file in bottom left of emacs
@ 2005-02-24 12:07 Olive
  2005-02-24 12:16 ` David Kastrup
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Olive @ 2005-02-24 12:07 UTC (permalink / raw)


Hello,

In the bootom left of emacs; it is written the name of the file 
corresponding to the file we are actually visiting. I wonder if it is 
possible to have to full path displayed instead of just the base file name.

Olive

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

* Re: full path of file in bottom left of emacs
  2005-02-24 12:07 full path of file in bottom left of emacs Olive
@ 2005-02-24 12:16 ` David Kastrup
  2005-02-24 23:52 ` Peter Dyballa
  2005-02-25 13:51 ` Stefan Monnier
  2 siblings, 0 replies; 8+ messages in thread
From: David Kastrup @ 2005-02-24 12:16 UTC (permalink / raw)


Olive <olive.lin@versateladsl.be> writes:

> In the bootom left of emacs; it is written the name of the file
> corresponding to the file we are actually visiting. I wonder if it is
> possible to have to full path displayed instead of just the base file
> name.

C-h v mode-line-format RET

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

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

* Re: full path of file in bottom left of emacs
  2005-02-24 12:07 full path of file in bottom left of emacs Olive
  2005-02-24 12:16 ` David Kastrup
@ 2005-02-24 23:52 ` Peter Dyballa
  2005-02-25 13:51 ` Stefan Monnier
  2 siblings, 0 replies; 8+ messages in thread
From: Peter Dyballa @ 2005-02-24 23:52 UTC (permalink / raw)
  Cc: help-gnu-emacs


Am 24.02.2005 um 13:07 schrieb Olive:

> In the bootom left of emacs; it is written the name of the file 
> corresponding to the file we are actually visiting. I wonder if it is 
> possible to have to full path displayed instead of just the base file 
> name.

I wouldn't do that! A full path name could become quite long. It's 
easier to type C-x C-b, list-buffers, and check there the file's full 
path name.

--
Greetings

   Pete

Bake Pizza not war!

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

* Re: full path of file in bottom left of emacs
  2005-02-24 12:07 full path of file in bottom left of emacs Olive
  2005-02-24 12:16 ` David Kastrup
  2005-02-24 23:52 ` Peter Dyballa
@ 2005-02-25 13:51 ` Stefan Monnier
  2005-02-25 23:05   ` Steinar Børmer
  2005-02-26 11:59   ` Olive
  2 siblings, 2 replies; 8+ messages in thread
From: Stefan Monnier @ 2005-02-25 13:51 UTC (permalink / raw)


> In the bootom left of emacs; it is written the name of the file
> corresponding to the file we are actually visiting. I wonder if it is
> possible to have to full path displayed instead of just the base file name.

C-h v uniquify-buffer-name-style RET


        Stefan

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

* Re: full path of file in bottom left of emacs
  2005-02-25 13:51 ` Stefan Monnier
@ 2005-02-25 23:05   ` Steinar Børmer
  2005-02-26  2:42     ` Stefan Monnier
  2005-02-26 11:59   ` Olive
  1 sibling, 1 reply; 8+ messages in thread
From: Steinar Børmer @ 2005-02-25 23:05 UTC (permalink / raw)


Stefan Monnier wrote:

| > In the bootom left of emacs; it is written the name of the file
| > corresponding to the file we are actually visiting. I wonder if it
| > is possible to have to full path displayed instead of just the base
| > file name.
| 
| C-h v uniquify-buffer-name-style RET

I don't have that variable, neither in 22.0.50 nor 21.3.2.  Where is it
defined?

-- 
SB

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

* Re: full path of file in bottom left of emacs
  2005-02-25 23:05   ` Steinar Børmer
@ 2005-02-26  2:42     ` Stefan Monnier
  2005-02-26  9:03       ` Steinar Børmer
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Monnier @ 2005-02-26  2:42 UTC (permalink / raw)


> | > In the bootom left of emacs; it is written the name of the file
> | > corresponding to the file we are actually visiting. I wonder if it
> | > is possible to have to full path displayed instead of just the base
> | > file name.
> | 
> | C-h v uniquify-buffer-name-style RET

> I don't have that variable, neither in 22.0.50 nor 21.3.2.  Where is it
> defined?

You may have to (require 'uniquify) first.
IIRC It's been there since Emacs-20.


        Stefan

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

* Re: full path of file in bottom left of emacs
  2005-02-26  2:42     ` Stefan Monnier
@ 2005-02-26  9:03       ` Steinar Børmer
  0 siblings, 0 replies; 8+ messages in thread
From: Steinar Børmer @ 2005-02-26  9:03 UTC (permalink / raw)


Stefan Monnier wrote:

| > | C-h v uniquify-buffer-name-style RET
| 
| > I don't have that variable, neither in 22.0.50 nor 21.3.2.  Where is
| > it defined?
| 
| You may have to (require 'uniquify) first.  IIRC It's been there since
| Emacs-20.

Indeed, thanks.  However, uniquify.el dates from the days of Emacs 17!
15 May 1986, according to the change log.  =)

-- 
SB

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

* Re: full path of file in bottom left of emacs
  2005-02-25 13:51 ` Stefan Monnier
  2005-02-25 23:05   ` Steinar Børmer
@ 2005-02-26 11:59   ` Olive
  1 sibling, 0 replies; 8+ messages in thread
From: Olive @ 2005-02-26 11:59 UTC (permalink / raw)


Stefan Monnier wrote:
>>In the bootom left of emacs; it is written the name of the file
>>corresponding to the file we are actually visiting. I wonder if it is
>>possible to have to full path displayed instead of just the base file name.
> 
> 
> C-h v uniquify-buffer-name-style RET
> 
> 
>         Stefan
It does not do exactly what I was searching for; but it is nevertheless 
very usefull. Thanks!

Olive

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

end of thread, other threads:[~2005-02-26 11:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-24 12:07 full path of file in bottom left of emacs Olive
2005-02-24 12:16 ` David Kastrup
2005-02-24 23:52 ` Peter Dyballa
2005-02-25 13:51 ` Stefan Monnier
2005-02-25 23:05   ` Steinar Børmer
2005-02-26  2:42     ` Stefan Monnier
2005-02-26  9:03       ` Steinar Børmer
2005-02-26 11:59   ` Olive

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.