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?
-
somewhat related: http://unix.stackexchange.com/questions/104901/how-to-find-out-which-file-is-currently-opened-in-vim – amphibient Jan 30 '14 at 00:18
-
Might you be thinking of https://github.com/Lokaltog/vim-powerline ? – johnny Feb 03 '14 at 01:10
5 Answers
You can add this to your .vimrc
file, 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
command line mode
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
-
Weird name (no mnemonic I think). This does not seem to show the full path. Would showing the full path be an option? – Jim Jan 29 '14 at 22:54
-
-
The tabs you are probably referring to is not a plugin, but a vim 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.

- 5,837
-
-
1Thanks for the downvote. Tabs show the name of the file, that's what you want, no? You called them tabs yourself... – pfnuesel Jan 30 '14 at 11:10
-
2
-
2
Also check out vim-airline. Note that you still have to use "set laststatus=2" show the status line.

- 141
- 4
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

- 93,103
- 40
- 240
- 233

- 119