Is there any way to get Emacs Shell-Mode to display output as it receives it instead waiting for the previous command to finish?
For example:
python -c "import time; print 'hello'; time.sleep(3); print '...goodbye'"
Will pause for 3 seconds and then print "hello" and "...goodbye" at the same time. I'm trying to get it to print "hello", wait three seconds, and then print "...goodbye".
I'm ruing Emacs 25.0.93.1 on Windows 7.
