# File lib/sup/modes/log-mode.rb, line 25
  def toggle_follow
    @follow = !@follow
    if @follow
      jump_to_line(lines - buffer.content_height + 1) # leave an empty line at bottom
    end
    buffer.mark_dirty
  end