Is it possible to display a text file in two or more columns without changing the text file itself?
I sometimes deal with a text file that contains a long list each of whose items are short. By default, if I had a list like below:
* a
* b
* c
* d
and if I have vertically extremely limited space on the screen, it'll be displayed like this:
* a
* b
I'd like to make it displayed like this:
window1 window2
* a * c
* b * d
And if I inserted a new org heading at the end of my list, it should be like this:
window1 window2
* b * d
* c * _
(_ is the point)
And the whole text file should be like this:
* a
* b
* c
* d
*
Is this possible?