When pair programming with emacs I've found it is hard for the person who is not typing ("driving") to follow scrolling. I've seen this both as the "passenger" and the "driver".
How can I make motion within the file easier to follow for other people?
I'm aware of the various smooth scrolling fixes, and I'm looking for some other visual indication here.
tmux
orscreen
. When pair programming, I found it easier for everybody to follow, if there is two screen display. – Nsukami _ Mar 20 '15 at 23:32lh-line-mode
makes it more clear where the cursor it. Oh, of course, make the cursor red or some other color that stand out more clearly. – Lindydancer Mar 21 '15 at 19:26+
symbol is added to the tab when the buffer is in a modified state. The mode-line of inactive windows are set to match the buffer background so as to help draw the user's eyes towards the active window -- with the active mode-line containing a different background color. http://emacs.stackexchange.com/a/10112/2287 – lawlist Mar 21 '15 at 21:55C-c C-a
or remove tabs withC-c C-n
-- i.e., you can have one tab showing or a zillion tabs, whatever you prefer. Tabs can be added and removed programmatically. [FYI: The@
symbol preceding a user name in a comment will help stackexchange to send the user a notification -- e.g.,@Croad Langshan
.] The screenshot also depicts the current buffer name in the mode-line with a bold font. – lawlist Mar 21 '15 at 22:06(global-hl-line-mode 1)
&(setq scroll-step 1)
could help (I hope). – Nsukami _ Mar 22 '15 at 00:29