Emacs follow-mode
stackoverflow.com
Emacs follow-mode
1–10 of 52 posts
Re: Emacs follow-mode
#2On my 27" cinema display, even using 12pt Monaco for my tired old eyes for extreme legibility, I can get 4-5 columns of 90 lines each, when editing source files or text, for an effective "screen length" of 360-450 lines. With 10pt, you can get 500+ lines "on screen" easily.
Docs: http://www.gnu.org/software/libtool/manual/emacs/Follow-Mode... .
Re: Emacs follow-mode
#3 nmap ef :vsplitwincmd lexe "norm! Ljz":set scb:wincmd h:set scb
Source: http://markmail.org/message/kbnyhxffy6zs7picRe: Emacs follow-mode
#4Re: Emacs follow-mode
#5I've been using Emacs for 32 years (hard to believe) and never knew about this incredible but apparently obscure feature of Emacs. On my 27" cinema display, even using 12pt Monaco for my tired old eyes for extreme legibility, I can get 4-5 columns of 90 lines each, when editing source files or text, for an effective "screen length" of 360-450 lines. With 10pt, you can get 500+ lines "on screen" easily. Docs: http://w…
Re: Emacs follow-mode
#6In vim, with scrollbind: nmap ef :vsplit wincmd l exe "norm! Ljz " :set scb :wincmd h :set scb Source: http://markmail.org/message/kbnyhxffy6zs7pic
Re: Emacs follow-mode
#7You can do that in Sublime Text as well: File -> Clone File http://www.sublimetext.com/
Re: Emacs follow-mode
#8Re: Emacs follow-mode
#91. split into three or four windows
2. balance the windows (so each takes up equal amount of space)
3. turn on line highlighting
Line highlighting helps because when using follow-mode it can become difficult to quickly spot where the cursor is without it (e.g. if you do an incremental search, the cursor could end up in any one of the many windows).
You can find the functions I wrote here, search for functions that end in "-and-follow":
https://github.com/nileshk/emacs/blob/master/nileshk/functio...
What I'd like to have is a function that dynamically opens just enough windows so that the entire file you are editing is entirely visible (possibly with an upper limit for number of windows that can be set).