Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know CRTLg displays the current file you're working on. Is there a way to modify my .vimrc such that the filename/path is always displayed?

share|improve this question

4 Answers

up vote 16 down vote accepted

In your statusline, add a %F to display the full path:

:help statusline

" Add full file path to your existing statusline
set statusline+=%F

Note, %F will be the full path. To get a path relative to the working directory, use %f.

Update

If your statusline is not already visible, you may need to

set laststatus=2

See :help laststatus for what the options mean. Normally, the statusline may be hidden, or hidden unless multiple buffers are open, but I find it extremely useful to have on all the time with customizations like this, despite losing one screen line to it.

share|improve this answer
I certainly prefer your answer to mine, but adding set statusline+=%F to my ~/.vimrc doesn't seem to do what your saying. Although the docs certainly seem to agree with you... – Tim Pote May 7 '12 at 20:41
This had no effect. Apologies if Im missing something simple, do you have any thoughts on that? – zallarak May 7 '12 at 20:42
@TimPote What vim version? Works for me. Maybe your statusline is already pushing it off or limiting width. Try just :set statusline=%F without the + – Michael Berkowski May 7 '12 at 20:43
@zallarak See my comment to Tim. Does your statusline change if you simply do :set statusline=%F? Look way over to the right or left to see if the filename is hiding over there in the statusline – Michael Berkowski May 7 '12 at 20:43
@Michael version 7.3.353. :set statusline=%F does nothing as well. Let me track down my current statusline settings. – Tim Pote May 7 '12 at 20:45
show 6 more comments

The only way I found to get the full path of the file I'm working in is: :echo expand('%:p'). You can re-map ctrl+g if you want, but I personally don't like shifting away from the standards too much. I've mapped F7 like so:

map  <F7> <Esc>:echo expand('%:p')<Return>
share|improve this answer
:help CTRL-G, and look two paragraphs down for CTRL-G with count. – Stefan Majewsky Aug 14 '12 at 8:17

I found 2 ways to display the file path in the Title bar of the gnome-terminal while editing a file with Vim.

The simpler (and better) way: Add the following line to your ~/.vimrc:

set title

Which will show you at the top:

filename.ext (~/path_to_directory_where_your_file_is/) - VIM

The more complicated way will show you the absolute file path. It's documented in a bit more detail in this blog post I recently wrote.

share|improve this answer

I've always used :f, but the answer and links from @MichaelBerkowski are amazing!

:f shows the path, line count, modified state, current cursor position, and more...

I didn't know about CTRLG but it appears to be about the same.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.