Dmitry Antipov [2013-09-25 17:42:29 +04:00] wrote: > With modern wide (16:9 or 16:10) screens, there is the following > question: is it reasonable/usable to have a feature to render the text > in two horizontally adjacent windows like it's "rendered" in the book? > +-----------+-----------+ > | A | B | > | | | > | | | > | | | > | | | > | | | > +-----------+-----------+ Like follow-mode? follow-mode is an interactive autoloaded compiled Lisp function in `follow.el'. [...] Follow mode is a minor mode that combines windows into one tall virtual window. This is accomplished by two main techniques: * The windows always displays adjacent sections of the buffer. This means that whenever one window is moved, all the others will follow. (Hence the name Follow mode.) * Should the point (cursor) end up outside a window, another window displaying that point is selected, if possible. This makes it possible to walk between windows using normal cursor movement commands. Follow mode comes to its prime when used on a large screen and two side-by-side windows are used. The user can, with the help of Follow mode, use two full-height windows as though they would have been one. Imagine yourself editing a large function, or section of text, and being able to use 144 lines instead of the normal 72... (your mileage may vary).