55

I am using vim and I need a way to always be able to see the file that I am working on without having to do ^G.
I see the file name when I start vim but when I start to work and use various functions it gets lost.
Also I have seen other people have some kind of "addons" in the lower part of the vim console that seem like they are "button"/"tabs" (I am not sure how to describe them) that show various info constantly including the file name.
Any idea what are these plugins? Or how can I achieve what I want?

terdon
  • 242,166
Jim
  • 10,120

5 Answers5

56

You can add this to your .vimrcfile, or temporarily while in vim.

  • vimrc - set laststatus=2
  • in vim - :set laststatus=2

To get the full path you can add this command, again to either your .vimrc or while in vim.

  • vimrc - set statusline+=%F
  • in vim - :set statusline+=%F

Examples

normal mode

                        ss #1

command line mode

                        ss #2

For more info than you care to read through there's additional info on both of these available in vim.

:help laststatus
:help statusline

References

slm
  • 369,824
14

I find that adding the currently opened file name on the window title bar using

: set title

in the .vimrc looks like less obnoxious then always having the status bar taking up a full line at the bottom.

AdminBee
  • 22,803
Rex
  • 141
6

The tabs you are probably referring to is not a plugin, but a built-in. Try

:tabnew

It should open a new tab and you should see the menu bar, showing the name of the files in the different tabs. To always show this menu-bar, use

:set showtabline=2

Although this makes only sense when you really want to work with tabs (I can recommend it). Otherwise I'd suggest to set the name in the statusbar as outlined by others.

pfnuesel
  • 5,837
4

Also check out vim-airline. Note that you still have to use "set laststatus=2" show the status line.

enter image description here

Peter Tseng
  • 141
  • 4
1

Try this for full path:

:set statusline =%4*\ %<%F%*

More info: http://got-ravings.blogspot.com/2008/08/vim-pr0n-making-statuslines-that-own.html

Michael Mrozek
  • 93,103
  • 40
  • 240
  • 233