Search code examples
vim

tail like functionality for gvim


I want to use gvim to view a log file which is being updated continuously, such that I always see the last updated line, much like tail command in unix. Is it possible?


Solution

  • Open logfile and

    :setlocal autoread
    

    There is a plugin (Tail Bundle) on the vim site.