I want to achieve the following: I want to split a vim session into two (or more) vertical windows (with the :vsplit command). Then, I want to have each window contents vertically offsetted so that the line after the last visible one of the first window becomes the first line of the second window. Then, when I use the arrows to scroll around, the vertical windows are scrollbound so that text flows from the second window into the first. How can I achieve this?
Share
There are plugins for that: MultiPage
You can also use a oneliner described in this post by Chip Campbell:
This will bind
<Leader>efto open a vsplit and make the splits continuous.