Im just curious if im viewing a file e.g. x.log which is currently being updated ie a log file. Is there a way to effectively refresh it rather than :q and vim x.log it again ?
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.
|
|
|
:edit with no other parameters will reload the current file. :edit! to discard changes first. Also gvim will prompt you to reload a file if you switch to another program and back, and it detects that the file has changed. |
|||
|
|
|
Also you can do :set autoread if you are just viewing the file without changing it. |
|||
|
|
|
:e reloads the current file. Use :e! if you made any changes. You can assign a key to it like this:
Where ^M is a literal control-M (use control-V in vi). |
|||
|
|